all repos — dotfiles @ 43677713e127effe34b83d4dbc16229a3aa8381e

my *nix dotfiles

hosts/denna: enable radicale
Anirudh Oppiliappan x@icyphox.sh
Sun, 09 Jun 2024 17:35:49 +0300
commit

43677713e127effe34b83d4dbc16229a3aa8381e

parent

2ddee78e08cae7860ea50324848541ddd109d4b2

1 files changed, 17 insertions(+), 0 deletions(-)

jump to
M hosts/denna/configuration.nixhosts/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?