hosts/denna: enable radicale
Anirudh Oppiliappan x@icyphox.sh
Sun, 09 Jun 2024 17:35:49 +0300
1 files changed,
17 insertions(+),
0 deletions(-)
jump to
M
hosts/denna/configuration.nix
→
hosts/denna/configuration.nix
@@ -53,6 +53,23 @@ openssh.enable = true;
tailscale.enable = true; }; + services.radicale = { + enable = true; + settings = { + server = { + hosts = [ "127.0.0.1:5232" ]; + }; + auth = { + type = "htpasswd"; + htpasswd = "/var/svc/radicale/users"; + htpasswd_encryption = "bcrypt"; + }; + storage = { + filesystem_folder = "/var/svc/radicale/collections"; + }; + }; + }; + nix.settings.experimental-features = [ "nix-command" "flakes" ]; system.stateVersion = "24.05"; # Did you read the comment?