From 355cfada4090b2623bf19a355133d5b56b031fe0 Mon Sep 17 00:00:00 2001 From: Tom Fitzhenry Date: Thu, 14 Sep 2023 15:52:56 +1000 Subject: [PATCH] nixos/vikunja: install 'vikunja' CLI tool See https://vikunja.io/docs/cli/ --- nixos/modules/services/web-apps/vikunja.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/nixos/modules/services/web-apps/vikunja.nix b/nixos/modules/services/web-apps/vikunja.nix index 8bc8e8c29259..6b1d4da532bf 100644 --- a/nixos/modules/services/web-apps/vikunja.nix +++ b/nixos/modules/services/web-apps/vikunja.nix @@ -147,5 +147,9 @@ in { }; environment.etc."vikunja/config.yaml".source = configFile; + + environment.systemPackages = [ + cfg.package-api # for admin `vikunja` CLI + ]; }; }