From 9e7929ab5fd481c8316587901d14a2f54b1f0906 Mon Sep 17 00:00:00 2001 From: stuebinm Date: Wed, 27 Sep 2023 23:33:13 +0200 Subject: [PATCH] fix auamost ???? fish doesn't find jq if it's not in environment.systemPackages, dunno why. --- services/uffd.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/services/uffd.nix b/services/uffd.nix index 04f1abe..b51cde7 100644 --- a/services/uffd.nix +++ b/services/uffd.nix @@ -56,4 +56,6 @@ script = "/persist/magic/mattermost-groupsync.fish"; startAt = "*:0/15"; }; + + environment.systemPackages = with pkgs; [ curl jq ]; }