flakes/containers/diamond/configuration.nix
Cilly Leang 3140302db9
Some checks are pending
CI / Build linux-lava for x86_64-linux (push) Waiting to run
containers/diamond: bind mount data dir
2026-03-17 14:45:12 +11:00

15 lines
364 B
Nix

{ config, lib, ... }: {
system.stateVersion = "25.11";
fileSystems."/var/lib/private" = {
device = "/persist";
fsType = "none";
options = [ "bind" ];
};
networking.firewall.allowedTCPPorts = [ 8000 ];
networking.firewall.allowedUDPPorts = [ 8000 ];
services.vaultwarden = {
enable = true;
domain = "diamond.local.lava.moe";
};
}