From 1e25d8bb71f10b8d9496740b663b2a3d545f09cd Mon Sep 17 00:00:00 2001 From: Zuckerberg Date: Thu, 10 Oct 2024 20:02:43 -0700 Subject: [PATCH] Add vikunja --- machines/storage/s0/default.nix | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/machines/storage/s0/default.nix b/machines/storage/s0/default.nix index ab35ae5..72e6a78 100644 --- a/machines/storage/s0/default.nix +++ b/machines/storage/s0/default.nix @@ -213,6 +213,7 @@ }; } (mkVirtualHost "vacuum.s0.neet.dev" "http://192.168.1.125") # valetudo + (mkVirtualHost "todo.s0.neet.dev" "http://localhost:${toString config.services.vikunja.port}") ]; tailscaleAuth = { @@ -232,6 +233,7 @@ "esphome.s0.neet.dev" "zigbee.s0.neet.dev" "vacuum.s0.neet.dev" + "todo.s0.neet.dev" ]; expectedTailnet = "koi-bebop.ts.net"; }; @@ -260,5 +262,15 @@ openMinimalFirewall = true; }; + services.vikunja = { + enable = true; + port = 61473; + frontendScheme = "https"; + frontendHostname = "todo.s0.neet.dev"; + settings = { + service.enableregistration = false; + }; + }; + boot.binfmt.emulatedSystems = [ "aarch64-linux" "armv7l-linux" ]; }