18 lines
279 B
Nix
18 lines
279 B
Nix
|
inputs @ {
|
||
|
nixpkgs,
|
||
|
self,
|
||
|
...
|
||
|
}:
|
||
|
nixpkgs.lib.mapAttrs (name: {
|
||
|
system,
|
||
|
module,
|
||
|
}:
|
||
|
nixpkgs.lib.nixosSystem {
|
||
|
inherit system;
|
||
|
modules = [./nixos module];
|
||
|
|
||
|
specialArgs = {
|
||
|
inherit inputs system self;
|
||
|
};
|
||
|
}) (import ./machines)
|