vaultwarden: enable ssl
Some checks failed
Build hosts / build-hosts (pull_request) Failing after 3s
Flake check / flake-check (pull_request) Failing after 3s

This commit is contained in:
sid 2026-04-03 15:18:18 +02:00
parent de754b0033
commit 4c166e1c47

View file

@ -1,14 +1,12 @@
{
constants,
config,
lib,
...
}:
let
inherit (constants) domain;
inherit (constants.services.vaultwarden) fqdn port;
inherit (lib) mkForce;
in
{
services.vaultwarden = {
@ -38,8 +36,6 @@ in
};
};
services.nginx.virtualHosts."${fqdn}".forceSSL = mkForce false; # let Tailnet handle SSL
sops =
let
owner = config.users.users.vaultwarden.name;