nix-config/configs/nixos/radicale.nix
Gabe Venberg c36c756862 lots of stuff:
Moved syncthing to system service
Restic actually works now
removed some old system configs.
formatting.
2024-09-30 16:06:17 +02:00

30 lines
601 B
Nix

{
inputs,
config,
pkgs,
lib,
...
}: {
services.radicale = lib.mkIf (lib.hasAttrByPath ["sops" "secrets" "radicale-users"] config) {
enable = true;
settings = {
auth = {
type = "htpasswd";
htpasswd_encryption = "md5";
htpasswd_filename = config.sops.secrets.radicale-users.path;
};
};
};
networking.firewall.allowedTCPPorts = [5232];
services.nginx.virtualHosts."cal.venberg.xyz" = {
enableACME = true;
forceSSL = true;
locations."/" = {
proxyPass = "http://localhost:5232";
};
};
imports = [./nginx.nix];
}