summaryrefslogtreecommitdiffstats
path: root/nixos/modules/hardware
diff options
context:
space:
mode:
authorSandro <sandro.jaeckel@gmail.com>2024-06-02 17:59:01 +0200
committerGitHub <noreply@github.com>2024-06-02 17:59:01 +0200
commit56744fd9eefe44b49c2f9d7e2364ef5432c3bc0e (patch)
tree33aa657ec23929385f1a4ba35a6c45722092ee42 /nixos/modules/hardware
parente0786ba1cc33b36255b4df2bbbc8b3f385684a7f (diff)
parentd93fb1bd1008b376a536a4a82ba189742b47293c (diff)
Merge pull request #312261 from Yarny0/ensure-printers-fix-options
Diffstat (limited to 'nixos/modules/hardware')
-rw-r--r--nixos/modules/hardware/printers.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/hardware/printers.nix b/nixos/modules/hardware/printers.nix
index de2f84d4831b..ace900d88586 100644
--- a/nixos/modules/hardware/printers.nix
+++ b/nixos/modules/hardware/printers.nix
@@ -13,7 +13,7 @@ let
} // optionalAttrs (p.description != null) {
D = p.description;
} // optionalAttrs (p.ppdOptions != {}) {
- o = mapAttrsToList (name: value: "'${name}'='${value}'") p.ppdOptions;
+ o = mapAttrsToList (name: value: "${name}=${value}") p.ppdOptions;
});
in ''
${pkgs.cups}/bin/lpadmin ${args} -E