summaryrefslogtreecommitdiff
path: root/profiles
diff options
context:
space:
mode:
authorMike Vink <ivi@vinkies.net>2024-01-11 23:37:11 +0100
committerMike Vink <ivi@vinkies.net>2024-01-11 23:37:11 +0100
commit51568cf1e1195aa53028c225802da429841904df (patch)
tree41009c03aecaf5818964588ec62a5b198a20aef2 /profiles
parentfa98e0837317a73d7027986fd45e19cbd6c01f23 (diff)
indent
Diffstat (limited to 'profiles')
-rw-r--r--profiles/homeserver/radicale.nix12
1 files changed, 6 insertions, 6 deletions
diff --git a/profiles/homeserver/radicale.nix b/profiles/homeserver/radicale.nix
index 56d7196..f04a4a4 100644
--- a/profiles/homeserver/radicale.nix
+++ b/profiles/homeserver/radicale.nix
@@ -1,13 +1,13 @@
{ lib, ... }: with lib; {
services.nginx = {
- virtualHosts."cal.${ivi.domain}" = {
- locations."/" = {
- proxyPass = "http://127.0.0.1:5232";
- };
+ virtualHosts."cal.${ivi.domain}" = {
+ locations."/" = {
+ proxyPass = "http://127.0.0.1:5232";
};
+ };
};
services.radicale = {
- enable = true;
- settings.server.hosts = [ "0.0.0.0:5232" ];
+ enable = true;
+ settings.server.hosts = [ "0.0.0.0:5232" ];
};
}