mirror of
https://git.gay/xqtc/nixos-config
synced 2024-11-22 20:40:32 +01:00
22 lines
367 B
Nix
22 lines
367 B
Nix
{
|
|
inputs,
|
|
lib,
|
|
...
|
|
}: {
|
|
flake.nixosConfigurations =
|
|
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;};
|
|
});
|
|
}
|