Add vikunja
Some checks failed
Check Flake / check-flake (push) Has been cancelled

This commit is contained in:
Zuckerberg 2024-10-10 20:02:43 -07:00
parent ac1cf1c531
commit 1e25d8bb71

View File

@ -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" ];
}