Some checks are pending
CI / Build linux-lava for x86_64-linux (push) Waiting to run
13 lines
316 B
Nix
13 lines
316 B
Nix
{ 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";
|
|
};
|
|
};
|
|
}
|