Add Astral host
This commit is contained in:
parent
c2399507d3
commit
b3be9bbad9
9 changed files with 198 additions and 138 deletions
16
hosts/default.nix
Normal file
16
hosts/default.nix
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
{ 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 ];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue