containers/diamond: init
Some checks are pending
CI / Build linux-lava for x86_64-linux (push) Waiting to run

This commit is contained in:
Cilly Leang 2026-03-17 14:37:36 +11:00
parent 3a45f85c37
commit 0c92b816fa
Signed by: cilly
GPG key ID: 6500251E087653C9
8 changed files with 191 additions and 20 deletions

View file

@ -0,0 +1,13 @@
{ config, lib, ... }: {
system.stateVersion = "25.11";
networking.firewall.allowedTCPPorts = [ 8000 ];
networking.firewall.allowedUDPPorts = [ 8000 ];
services.vaultwarden = {
enable = true;
domain = "diamond.local.lava.moe";
config = {
DATA_FOLDER = "/persist/vaultwarden";
};
};
}