diff --git a/inventories/default.nix b/inventories/default.nix index 53f6896..30da442 100644 --- a/inventories/default.nix +++ b/inventories/default.nix @@ -492,6 +492,14 @@ }; }; + installer = { + module = { + name = "installer"; + input = "clan-core"; + }; + roles.iso.machines."zosma" = { }; + }; + }; }; }; diff --git a/machines/zosma/configuration.nix b/machines/zosma/configuration.nix new file mode 100644 index 0000000..1fa8795 --- /dev/null +++ b/machines/zosma/configuration.nix @@ -0,0 +1,13 @@ +{ lib, ... }: +{ + nixpkgs.hostPlatform = { + system = "x86_64-linux"; + }; + system.stateVersion = lib.mkForce "26.11"; + clan.core.sops.defaultGroups = [ "admins" ]; + + clan.core.settings.name = "zosma"; + clan.core.settings.machine.description = + "USB installer"; + +}