flake.nix: space out each host

This commit is contained in:
2025-08-13 05:39:26 -07:00
parent 88bfe2417e
commit 5f376e484f

View File

@@ -38,6 +38,7 @@
};
modules = [ ./configuration.nix ];
};
db-mdb11 = lib.nixosSystem {
specialArgs = {
inherit inputs;
@@ -45,6 +46,7 @@
};
modules = [ ./configuration.nix ];
};
db-pg17 = lib.nixosSystem {
specialArgs = {
inherit inputs;
@@ -52,6 +54,7 @@
};
modules = [ ./configuration.nix ];
};
fs-01 = lib.nixosSystem {
specialArgs = {
inherit inputs;
@@ -59,6 +62,7 @@
};
modules = [ ./configuration.nix ];
};
gms-01 = lib.nixosSystem {
specialArgs = {
inherit inputs;
@@ -66,6 +70,15 @@
};
modules = [ ./configuration.nix ];
};
hel-01 = lib.nixosSystem {
specialArgs = {
inherit inputs;
hostname = "gms-01";
};
modules = [ ./configuration.nix ];
};
log-01 = lib.nixosSystem {
specialArgs = {
inherit inputs;
@@ -73,6 +86,15 @@
};
modules = [ ./configuration.nix ];
};
nbg-01 = lib.nixosSystem {
specialArgs = {
inherit inputs;
hostname = "log-01";
};
modules = [ ./configuration.nix ];
};
print-01 = lib.nixosSystem {
specialArgs = {
inherit inputs;
@@ -80,6 +102,7 @@
};
modules = [ ./configuration.nix ];
};
test-nixos = lib.nixosSystem {
specialArgs = {
inherit inputs;
@@ -87,6 +110,7 @@
};
modules = [ ./configuration.nix ];
};
web-01 = lib.nixosSystem {
specialArgs = {
inherit inputs;