From 33fec3c08ea89397bc5155121408e53f2bfc03fa Mon Sep 17 00:00:00 2001 From: iFargle Date: Thu, 31 Aug 2023 13:33:43 +0900 Subject: [PATCH] test --- nixos/common/services/opensnitch.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/nixos/common/services/opensnitch.nix b/nixos/common/services/opensnitch.nix index 545b322d..2226467d 100644 --- a/nixos/common/services/opensnitch.nix +++ b/nixos/common/services/opensnitch.nix @@ -1,5 +1,6 @@ {lib, pkgs, desktop, ... }: { - environment.systemPackages = [ ] ++ lib.optional (builtins.isString desktop) opensnitch-ui; + # Install the UI if we are using a desktop + environment.systemPackages = [ ] ++ lib.optional (builtins.isString desktop) pkgs.opensnitch-ui; services.opensnitch = { enable = true;