25 lines
574 B
Nix
25 lines
574 B
Nix
{ self, nixpkgs, phps, agenix, ... }:
|
|
let inherit (nixpkgs.lib) nixosSystem;
|
|
in {
|
|
marauder = nixosSystem {
|
|
system = "x86_64-linux";
|
|
modules = [ ./marauder ];
|
|
specialArgs = {
|
|
inherit (self) nixosModules;
|
|
inherit phps agenix;
|
|
};
|
|
};
|
|
astral = nixosSystem {
|
|
system = "x86_64-linux";
|
|
modules = [ ./astral ];
|
|
specialArgs = { inherit (self) nixosModules; };
|
|
};
|
|
quasar = nixosSystem {
|
|
system = "x86_64-linux";
|
|
modules = [ ./quasar ];
|
|
specialArgs = {
|
|
inherit (self) nixosModules;
|
|
inherit agenix;
|
|
};
|
|
};
|
|
}
|