diff options
author | Gregor Kleen <gkleen@yggdrasil.li> | 2025-01-24 09:36:13 +0100 |
---|---|---|
committer | Gregor Kleen <gkleen@yggdrasil.li> | 2025-01-24 09:36:13 +0100 |
commit | cb21d812938fadb6f3eb7571cd3f7d783d85297e (patch) | |
tree | 558598a3eeb5312541ce464f5be2893a564521c0 /flake.nix | |
parent | 24825b6afac2551c1303cd2f84276be47b845f31 (diff) | |
download | nixos-cb21d812938fadb6f3eb7571cd3f7d783d85297e.tar nixos-cb21d812938fadb6f3eb7571cd3f7d783d85297e.tar.gz nixos-cb21d812938fadb6f3eb7571cd3f7d783d85297e.tar.bz2 nixos-cb21d812938fadb6f3eb7571cd3f7d783d85297e.tar.xz nixos-cb21d812938fadb6f3eb7571cd3f7d783d85297e.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}" configuration) nixosConfig.config.home-manager.users) self.nixosConfigurations)); | 338 | homeConfigurations = listToAttrs (concatLists (mapAttrsToList (hostname: nixosConfig: mapAttrsToList (username: nameValuePair "${username}@${hostname}") 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 | ||