bind mount loophole
Some checks failed
Activate Homelab Configuration / rebuild (push) Failing after 5s

This commit is contained in:
Satria 2026-05-01 08:05:02 +07:00
commit d4de48420f
2 changed files with 12 additions and 9 deletions

View file

@ -5,10 +5,15 @@
backupDir = "/mnt/data/apps/vaultwarden/backups";
environmentFile = "/mnt/data/apps/vaultwarden/.env";
config = {
DATA_FOLDER = "/mnt/data/apps/vaultwarden/data";
ROCKET_PORT = 8060;
ROCKET_ADDRESS = "127.0.0.1";
ROCKET_LOG = "critical";
};
};
fileSystems."/var/lib/vaultwarden" = {
device = "/mnt/data/apps/vaultwarden/data";
dependsOn = [ "/mnt/data" ];
options = [ "bind" "nofail" ];
};
}