mirror of
https://git.gay/xqtc/nixos-config
synced 2024-11-22 21:20:32 +01:00
12 lines
277 B
Nix
12 lines
277 B
Nix
|
{inputs, lib, ...}: {
|
||
|
flake = lib.genAttrs [
|
||
|
"asmodeus" "seraphim" "lilith" "lambda" "beleth"
|
||
|
] (name: inputs.nixpkgs.lib.nixosSystem {
|
||
|
system = "x86_64-linux";
|
||
|
modules = [
|
||
|
../hosts/x86_64-linux/${name}
|
||
|
];
|
||
|
specialArgs = {inherit inputs;};
|
||
|
});
|
||
|
}
|