vaultwarden service

This commit is contained in:
Satria 2026-03-05 22:26:10 +07:00
commit 24746cc727
3 changed files with 21 additions and 6 deletions

View file

@ -0,0 +1,12 @@
{ homelab, ... }: {
services.vaultwarden = {
enable = true;
config = {
DOMAIN = "pass.proxy.${homelab.domain}";
SIGNUPS_ALLOWED = true;
ROCKET_ADDRESS = "127.0.0.1";
ROCKET_PORT = 8060;
ROCKET_LOG = "critical";
};
};
}