From 381984fc596c3cf268d4bcf061164158fbcfb95a Mon Sep 17 00:00:00 2001 From: Jakub Stachurski Date: Tue, 21 Jul 2026 20:27:22 +0200 Subject: Move host definition to inventory.nix --- inventory.nix | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 inventory.nix (limited to 'inventory.nix') diff --git a/inventory.nix b/inventory.nix new file mode 100644 index 0000000..98cd259 --- /dev/null +++ b/inventory.nix @@ -0,0 +1,41 @@ +{inputs, ...}: { + omega-relay = { + type = "server"; + system = "x86_64-linux"; + nix = true; + nix-modules = [ + ./users/wilkuu-server.nix + inputs.stalwart-nix.nixosModules.default + ]; + interfaces = {}; + }; + apocalypse = { + type = "desktop"; + system = "x86_64-linux"; + nix = true; + nix-modules = [ + ./users/wilkuu.nix + ]; + interfaces = {}; + }; + tacitus = { + type = "desktop"; + system = "x86_64-linux"; + nix = true; + nix-modules = [ + ./users/wilkuu-server.nix + ]; + interfaces = {}; + + }; + # TODO: Support for live images as packages + # full-iso = { + # type = "live"; + # system = "x86_64-linux"; + # nix = true; + # nix-paths = [ + # ./users/live-user.nix + # ]; + # interfaces = null; + # }; +} -- cgit v1.3.1