From 6001d90dafe0fcfc4195372d72c68dca59d30c22 Mon Sep 17 00:00:00 2001 From: Rodrigo Arias Mallo Date: Wed, 4 Feb 2026 15:05:18 +0100 Subject: [PATCH] WIP: Enable vikunja --- m/tent/configuration.nix | 1 + m/tent/vikunja.nix | 13 +++++++++++++ 2 files changed, 14 insertions(+) create mode 100644 m/tent/vikunja.nix diff --git a/m/tent/configuration.nix b/m/tent/configuration.nix index 9213b6eb..c6c32c1b 100644 --- a/m/tent/configuration.nix +++ b/m/tent/configuration.nix @@ -13,6 +13,7 @@ ./gitea.nix ./openproject.nix ./redmine.nix + ./vikunja.nix ../hut/public-inbox.nix ../hut/msmtp.nix ../module/p.nix diff --git a/m/tent/vikunja.nix b/m/tent/vikunja.nix new file mode 100644 index 00000000..d184d093 --- /dev/null +++ b/m/tent/vikunja.nix @@ -0,0 +1,13 @@ +{ pkgs, ... }: +{ + services.vikunja.enable = true; + services.vikunja.frontendScheme = "http"; + services.vikunja.frontendHostname = "localhost"; + + # To run vikunja from a subdirectory we need to *sigh* rebuild it with the + # variable "VIKUNJA_FRONTEND_BASE" set to the subpath. + # See https://vikunja.io/docs/running-vikunja-in-a-subdirectory/ + # services.vikunja.package = pkgs.vikunja.overrideAttrs (old: { + # }); + #services.nginx.virtualHosts."jungle.bsc.es".locations."/vikunja".extraConfig +}