feat: enable radicale for calendar

This commit is contained in:
Noa Aarts 2024-08-31 17:19:08 +02:00
parent 7a1022097d
commit d852f233ff
Signed by: noa
GPG key ID: 1850932741EFF672

View file

@ -91,8 +91,6 @@
# enableSSHSupport = true; # enableSSHSupport = true;
# }; # };
# Enable the OpenSSH daemon.
services = { };
programs.zsh.enable = true; programs.zsh.enable = true;
@ -167,12 +165,16 @@
bindAddress = "127.0.0.1"; bindAddress = "127.0.0.1";
port = 22332; port = 22332;
}; };
hydra = { radicale = {
enable = false; enable = true;
hydraURL = "http://localhost:3000"; settings = {
notificationSender = "hydra@localhost"; server.hosts = [ "0.0.0.0:29341" "[::]:29341" ];
buildMachinesFiles = [ ]; auth = {
useSubstitutes = true; type = "htpasswd";
htpasswd_filename = "/var/radicale_users";
htpasswd_encryption = "bcrypt";
};
};
}; };
nginx = nginx =
let let
@ -333,6 +335,7 @@
3000 # hydra 3000 # hydra
22000 # syncthing 22000 # syncthing
29341 # radicale
]; ];
networking.firewall.allowedUDPPorts = [ networking.firewall.allowedUDPPorts = [
22 # ssh 22 # ssh