diff options
Diffstat (limited to 'common/home')
| -rw-r--r-- | common/home/default.nix | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/common/home/default.nix b/common/home/default.nix index aceeaba..7552b53 100644 --- a/common/home/default.nix +++ b/common/home/default.nix @@ -41,8 +41,8 @@ in map (n: { name = n; value = - if builtins.pathExists ./${n}/programs/default.nix then - (import ./${n} { + if builtins.pathExists ./programs/${n}/default.nix then + (import ./programs/${n} { inherit pkgs; home = config.home-manager.users.n8.home; }) @@ -55,8 +55,8 @@ in map (n: { name = n; value = - if builtins.pathExists ./${n}/services/default.nix then - (import ./${n} { inherit pkgs; }) + if builtins.pathExists ./services/${n}/default.nix then + (import ./services/${n} { inherit pkgs; }) else { enable = true; }; }) services |