Skip to content

Commit b618a30

Browse files
committed
fix: thanks raf
1 parent 11098df commit b618a30

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

hosts/default.nix

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,12 @@
66
inherit (self) inputs;
77
mkHost = name: system:
88
nixpkgs.lib.nixosSystem {
9-
inherit system;
109
modules =
1110
[
12-
{networking.hostName = name;}
11+
{
12+
networking.hostName = name;
13+
nixpkgs.hostPlatform = system;
14+
}
1315
./${name}
1416
]
1517
++ builtins.attrValues self.nixosModules;

0 commit comments

Comments
 (0)