mirror of
https://github.com/buckley310/nixos-config.git
synced 2024-11-09 18:47:02 +00:00
18 lines
262 B
Nix
18 lines
262 B
Nix
nixosModule:
|
|
|
|
builtins.mapAttrs
|
|
|
|
(name: system: {
|
|
inherit system;
|
|
modules = [
|
|
nixosModule
|
|
(./. + "/${name}")
|
|
{ networking.hostName = name; }
|
|
];
|
|
})
|
|
|
|
{
|
|
hp = "x86_64-linux";
|
|
levi = "x86_64-linux";
|
|
testbox = "x86_64-linux";
|
|
}
|