feat: enable radicale for calendar
This commit is contained in:
parent
7a1022097d
commit
d852f233ff
1 changed files with 11 additions and 8 deletions
|
|
@ -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
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue