flake.nix: Use inherit instead
This commit is contained in:
parent
f8fc66d9ad
commit
40fbcf9654
1 changed files with 1 additions and 1 deletions
|
@ -29,7 +29,7 @@
|
||||||
nixosConfigurations = nixpkgs.lib.foldl (c: s:
|
nixosConfigurations = nixpkgs.lib.foldl (c: s:
|
||||||
c // {
|
c // {
|
||||||
${s.name} = nixpkgs.lib.nixosSystem {
|
${s.name} = nixpkgs.lib.nixosSystem {
|
||||||
system = s.system;
|
inherit (s) system;
|
||||||
modules = [
|
modules = [
|
||||||
./hosts/${s.name}
|
./hosts/${s.name}
|
||||||
home-manager.nixosModules.home-manager
|
home-manager.nixosModules.home-manager
|
||||||
|
|
Loading…
Reference in a new issue