nixos/hosts/default.nix
2025-10-08 17:14:28 -07:00

17 lines
403 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; };
};
}