flakes/containers/diamond/configuration.nix

16 lines
364 B
Nix
Raw Normal View History

2026-03-17 14:37:36 +11:00
{ config, lib, ... }: {
system.stateVersion = "25.11";
fileSystems."/var/lib/private" = {
device = "/persist";
fsType = "none";
options = [ "bind" ];
};
2026-03-17 14:37:36 +11:00
networking.firewall.allowedTCPPorts = [ 8000 ];
networking.firewall.allowedUDPPorts = [ 8000 ];
services.vaultwarden = {
enable = true;
domain = "diamond.local.lava.moe";
};
}