feat(service): add vaultwarden

This commit is contained in:
2026-03-13 08:45:34 +01:00
parent 4913a2dc65
commit 7c1c0705d0
2 changed files with 12 additions and 0 deletions
+1
View File
@@ -3,6 +3,7 @@
imports = [
./gitea.nix
./octoprint.nix
./vaultwarden.nix
];
services.openssh.enable = true;
+11
View File
@@ -0,0 +1,11 @@
{ ... }:
{
services.vaultwarden = {
enable = true;
domain = "vaultwarden.patrickcanal.it";
config = {
ROCKET_ADDRESS = "0.0.0.0";
ROCKET_PORT = 8003;
};
};
}