diff options
| author | Grisha Shipunov | 2026-08-02 11:07:55 +0000 |
|---|---|---|
| committer | Grisha Shipunov | 2026-08-02 12:47:54 +0000 |
| commit | 36268a51b81bad88aedb40dac55582be945fc3ab (patch) | |
| tree | 3406a86b600ed3572496f4f098b6616759ff2308 /microvms/kanidm/default.nix | |
| parent | c6229f1835c0b7c02641de999f86423d1f288bce (diff) | |
kanidm: init
Diffstat (limited to 'microvms/kanidm/default.nix')
| -rw-r--r-- | microvms/kanidm/default.nix | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/microvms/kanidm/default.nix b/microvms/kanidm/default.nix new file mode 100644 index 0000000..13a837b --- /dev/null +++ b/microvms/kanidm/default.nix @@ -0,0 +1,28 @@ +{ config, ... }: +{ + imports = [ + ../lib + ./kanidm.nix + ]; + + oxalab.vm.number = 10; + + networking.hostName = "kanidm"; + system.stateVersion = "26.05"; + + sops.secrets = { + "wg/0xa-proxy" = { + owner = config.users.users.systemd-network.name; + }; + "wg/0xa-mgmt" = { + owner = config.users.users.systemd-network.name; + }; + }; + + + microvm = { + mem = 1 * 1024; + vcpu = 2; + }; + +} |
