diff options
Diffstat (limited to 'user-profiles/core.nix')
-rw-r--r-- | user-profiles/core.nix | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/user-profiles/core.nix b/user-profiles/core.nix index acd61b9a..ea782a4b 100644 --- a/user-profiles/core.nix +++ b/user-profiles/core.nix | |||
@@ -1,4 +1,4 @@ | |||
1 | { flake, userName, config, lib, utils, ... }: | 1 | { flake, flakeInputs, path, userName, config, lib, utils, ... }: |
2 | 2 | ||
3 | with lib; | 3 | with lib; |
4 | 4 | ||
@@ -7,6 +7,7 @@ with lib; | |||
7 | users.users.${userName} = {}; # Just make sure the user is created | 7 | users.users.${userName} = {}; # Just make sure the user is created |
8 | 8 | ||
9 | home-manager.useUserService = true; | 9 | home-manager.useUserService = true; |
10 | home-manager.extraSpecialArgs = { inherit flake flakeInputs path; }; | ||
10 | home-manager.users.${userName} = { | 11 | home-manager.users.${userName} = { |
11 | imports = lib.attrValues flake.homeModules; | 12 | imports = lib.attrValues flake.homeModules; |
12 | 13 | ||