aboutsummaryrefslogtreecommitdiff
path: root/modules/network/default.nix
diff options
context:
space:
mode:
authorAkshay Nair <phenax5@gmail.com>2026-03-21 22:59:10 +0530
committerAkshay Nair <phenax5@gmail.com>2026-03-21 22:59:10 +0530
commitc5d02e0c371ca71a9a668bc15dfc63aaf5dc28f9 (patch)
treeecc7a6fed9d52593a37514cae058e199bb8c04ff /modules/network/default.nix
parenta254feb6191d9a20ddd6790229bc55e396cec25d (diff)
downloadhomeserver-nixos-config-c5d02e0c371ca71a9a668bc15dfc63aaf5dc28f9.tar.gz
homeserver-nixos-config-c5d02e0c371ca71a9a668bc15dfc63aaf5dc28f9.zip
Caldav server + ical sync service
Diffstat (limited to 'modules/network/default.nix')
-rw-r--r--modules/network/default.nix2
1 files changed, 2 insertions, 0 deletions
diff --git a/modules/network/default.nix b/modules/network/default.nix
index 78aea9d..25cd5aa 100644
--- a/modules/network/default.nix
+++ b/modules/network/default.nix
@@ -16,6 +16,7 @@ in
firewall.enable = true;
};
+ # Service mappings (dns + nginx)
services.service-router = {
enable = true;
routes = {
@@ -34,6 +35,7 @@ in
"news.local" = { inherit host; port = ports.yarr; };
# "librarian.local" = { inherit host; port = ports.lazylibrarian; };
"paperless.local" = { inherit host; port = ports.paperless; configureNginx = true; };
+ "calendar.local" = { inherit host; port = ports.caldav; };
};
};