diff options
author | Gregor Kleen <gkleen@yggdrasil.li> | 2021-01-01 22:19:20 +0100 |
---|---|---|
committer | Gregor Kleen <gkleen@yggdrasil.li> | 2021-01-03 20:18:01 +0100 |
commit | f487e082cd68e4b9798f5632a6bee80b6576eeee (patch) | |
tree | 287473444172208e983044c0ba57c04cbb8da012 /flake.nix | |
parent | 5f683a4e264c64b838e6244cf72e9d08d84be26e (diff) | |
download | nixos-f487e082cd68e4b9798f5632a6bee80b6576eeee.tar nixos-f487e082cd68e4b9798f5632a6bee80b6576eeee.tar.gz nixos-f487e082cd68e4b9798f5632a6bee80b6576eeee.tar.bz2 nixos-f487e082cd68e4b9798f5632a6bee80b6576eeee.tar.xz nixos-f487e082cd68e4b9798f5632a6bee80b6576eeee.zip |
fix typo wrt. home-modules
Diffstat (limited to 'flake.nix')
-rw-r--r-- | flake.nix | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -123,7 +123,7 @@ | |||
123 | in modulesAttrs // { inherit systemProfiles users userProfiles accounts; }; | 123 | in modulesAttrs // { inherit systemProfiles users userProfiles accounts; }; |
124 | nixosConfigurations = recImport rec { dir = ./hosts; _import = mkNixosConfiguration dir; }; | 124 | nixosConfigurations = recImport rec { dir = ./hosts; _import = mkNixosConfiguration dir; }; |
125 | 125 | ||
126 | homeManagerModules = recImport rec { dir = ./user-profiles; }; | 126 | homeManagerModules = recImport rec { dir = ./home-modules; }; |
127 | homeManagerConfigurations = listToAttrs (concatMap ({hostName, users}: mapAttrsToList (userName: homeConfig: nameValuePair "${userName}@${hostName}" homeConfig) users) (mapAttrsToList (hostName: nixosConfig: { inherit hostName; users = nixosConfig.config.home-manager.users; }) (self.nixosConfigurations))); | 127 | homeManagerConfigurations = listToAttrs (concatMap ({hostName, users}: mapAttrsToList (userName: homeConfig: nameValuePair "${userName}@${hostName}" homeConfig) users) (mapAttrsToList (hostName: nixosConfig: { inherit hostName; users = nixosConfig.config.home-manager.users; }) (self.nixosConfigurations))); |
128 | 128 | ||
129 | overlay = import overlayPaths.pkgs; | 129 | overlay = import overlayPaths.pkgs; |