From 50a0b69d95d5f0e30a4d937aee217d0f42c38b18 Mon Sep 17 00:00:00 2001 From: Ivan Malison Date: Mon, 28 Aug 2023 01:40:50 +0000 Subject: [PATCH] [NixOS] Enable vaultwarden on biskcomp --- nixos/machines/biskcomp.nix | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/nixos/machines/biskcomp.nix b/nixos/machines/biskcomp.nix index 11671aba..f5671ae4 100644 --- a/nixos/machines/biskcomp.nix +++ b/nixos/machines/biskcomp.nix @@ -22,6 +22,14 @@ path = "/nix-cache"; }; + services.vaultwarden = { + enable = true; + config = { + ROCKET_ADDRESS = "::"; + ROCKET_PORT = 8222; + }; + }; + services.nginx = { enable = true; recommendedProxySettings = true;