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; + }; }