From 46f631aab192d4eaa89f48c732513b28a9b2d56e Mon Sep 17 00:00:00 2001 From: Mohammad Rafiq Date: Mon, 7 Jul 2025 09:19:57 +0800 Subject: [PATCH] feat(shell): enable shell in home-manager module --- nix/modules/shell.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/nix/modules/shell.nix b/nix/modules/shell.nix index 0345c08..865212f 100644 --- a/nix/modules/shell.nix +++ b/nix/modules/shell.nix @@ -14,4 +14,9 @@ in }) cfg.manifest.users; users.users = forAllUsers' (_: value: { shell = pkgs.${value.shell}; }); }; + flake.modules.homeManager.default = + { config, ... }: + { + programs.${cfg.manifest.users.${config.home.username}.shell}.enable = true; + }; }