local Vaultwarden instance

This commit is contained in:
Christoph Cullmann 2025-05-19 19:29:51 +02:00
parent 6560e7601f
commit b7b563c4cc
No known key found for this signature in database

View file

@ -183,6 +183,9 @@ in
# ollama & Co. storage
{ directory = "/var/lib/private"; mode = "0700"; }
# local Vaultwarden instance
{ directory = "/var/lib/vaultwarden"; mode = "0700"; user = "vaultwarden"; }
];
files = [
# Ly last used user and Co.
@ -587,4 +590,7 @@ in
# get gnupg to work
programs.gnupg.agent.enable = true;
programs.gnupg.agent.pinentryPackage = pkgs.pinentry-curses;
# local Vaultwarden
services.vaultwarden.enable = true;
}