summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
authorgithub-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>2021-03-14 18:17:08 +0000
committerGitHub <noreply@github.com>2021-03-14 18:17:08 +0000
commitc7b23f6440cf3ec6a0600e1c70da94bcdf3a2375 (patch)
treefb151fdb6bf551aaf817a0acfb15cb74dd315e41 /nixos
parent0241873f7f505e9c1dd6e884224bfcf0a34bb6f9 (diff)
parente3e59d4ab7b9e353d1762100dfeafff66a4118ee (diff)
downloadnixpkgs-c7b23f6440cf3ec6a0600e1c70da94bcdf3a2375.tar
nixpkgs-c7b23f6440cf3ec6a0600e1c70da94bcdf3a2375.tar.gz
nixpkgs-c7b23f6440cf3ec6a0600e1c70da94bcdf3a2375.tar.bz2
nixpkgs-c7b23f6440cf3ec6a0600e1c70da94bcdf3a2375.tar.lz
nixpkgs-c7b23f6440cf3ec6a0600e1c70da94bcdf3a2375.tar.xz
nixpkgs-c7b23f6440cf3ec6a0600e1c70da94bcdf3a2375.tar.zst
nixpkgs-c7b23f6440cf3ec6a0600e1c70da94bcdf3a2375.zip
Merge master into staging-next
Diffstat (limited to 'nixos')
-rw-r--r--nixos/modules/services/printing/cupsd.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/services/printing/cupsd.nix b/nixos/modules/services/printing/cupsd.nix
index b19cd073252..d2b36d9e754 100644
--- a/nixos/modules/services/printing/cupsd.nix
+++ b/nixos/modules/services/printing/cupsd.nix
@@ -104,7 +104,7 @@ let
     ignoreCollisions = true;
   };
 
-  filterGutenprint = pkgs: filter (pkg: pkg.meta.isGutenprint or false == true) pkgs;
+  filterGutenprint = filter (pkg: pkg.meta.isGutenprint or false == true);
   containsGutenprint = pkgs: length (filterGutenprint pkgs) > 0;
   getGutenprint = pkgs: head (filterGutenprint pkgs);