diff options
| author | Jakub Stachurski <jakub@wilkuu.nl> | 2026-07-21 20:27:22 +0200 |
|---|---|---|
| committer | Jakub Stachurski <jakub@wilkuu.nl> | 2026-07-21 20:27:22 +0200 |
| commit | 381984fc596c3cf268d4bcf061164158fbcfb95a (patch) | |
| tree | be2971742215333a052c6cb2c363e5f988b566ad /inventory.nix | |
| parent | 4dbacb6c6e712015bde14a2276cf70e47e317164 (diff) | |
Move host definition to inventory.nix
Diffstat (limited to 'inventory.nix')
| -rw-r--r-- | inventory.nix | 41 |
1 files changed, 41 insertions, 0 deletions
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; + # }; +} |
