python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / nixos / modules / programs / system-config-printer.nix
blob7c7eea5805459dded8065b423011ccfbc5072892
1 { config, pkgs, lib, ... }:
3 with lib;
7   ###### interface
9   options = {
11     programs.system-config-printer = {
13       enable = mkEnableOption (lib.mdDoc "system-config-printer, a Graphical user interface for CUPS administration");
15     };
17   };
20   ###### implementation
22   config = mkIf config.programs.system-config-printer.enable {
24     environment.systemPackages = [
25       pkgs.system-config-printer
26     ];
28     services.system-config-printer.enable = true;
30   };