diff options
author | Gregor Kleen <gkleen@yggdrasil.li> | 2025-01-24 09:24:59 +0100 |
---|---|---|
committer | Gregor Kleen <gkleen@yggdrasil.li> | 2025-01-24 09:24:59 +0100 |
commit | 24825b6afac2551c1303cd2f84276be47b845f31 (patch) | |
tree | 425ff5c6939690d30d088be18365cc22f9095c50 /flake.nix | |
parent | 08414045a56517d95e94f55c406ec8940336c6c7 (diff) | |
download | nixos-24825b6afac2551c1303cd2f84276be47b845f31.tar nixos-24825b6afac2551c1303cd2f84276be47b845f31.tar.gz nixos-24825b6afac2551c1303cd2f84276be47b845f31.tar.bz2 nixos-24825b6afac2551c1303cd2f84276be47b845f31.tar.xz nixos-24825b6afac2551c1303cd2f84276be47b845f31.zip |
...
Diffstat (limited to 'flake.nix')
-rw-r--r-- | flake.nix | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -335,7 +335,7 @@ | |||
335 | nixosConfigurations = installerNixosConfigurations // nixImport rec { dir = ./hosts; _import = mkNixosConfiguration [] dir; }; | 335 | nixosConfigurations = installerNixosConfigurations // nixImport rec { dir = ./hosts; _import = mkNixosConfiguration [] dir; }; |
336 | 336 | ||
337 | homeModules = nixImport rec { dir = ./home-modules; }; | 337 | homeModules = nixImport rec { dir = ./home-modules; }; |
338 | homeConfigurations = listToAttrs (concatLists (mapAttrsToList (hostname: nixosConfig: mapAttrsToList (username: configuration: nameValuePair "${username}@${hostname}" { inherit (configuration.home) activationPackage; inherit (configuration) home-files; }) nixosConfig.config.home-manager.users) self.nixosConfigurations)); | 338 | homeConfigurations = listToAttrs (concatLists (mapAttrsToList (hostname: nixosConfig: mapAttrsToList (username: configuration: nameValuePair "${username}@${hostname}" configuration) nixosConfig.config.home-manager.users) self.nixosConfigurations)); |
339 | 339 | ||
340 | overlays = mapAttrs (_name: path: mkOverlay path) overlayPaths; | 340 | overlays = mapAttrs (_name: path: mkOverlay path) overlayPaths; |
341 | 341 | ||