nixpkgs/nixos/modules/services/desktops/system-config-printer.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

43 lines
687 B
Nix
Raw Normal View History

2019-08-27 19:39:48 +00:00
{ config, pkgs, lib, ... }:
with lib;
{
###### interface
options = {
services.system-config-printer = {
enable = mkEnableOption "system-config-printer, a service for CUPS administration used by printing interfaces";
2019-08-27 19:39:48 +00:00
};
};
###### implementation
config = mkIf config.services.system-config-printer.enable {
services.dbus.packages = [
pkgs.system-config-printer
];
systemd.packages = [
pkgs.system-config-printer
];
services.udev.packages = [
pkgs.system-config-printer
];
# for $out/bin/install-printer-driver
# TODO: Enable once #177946 is resolved
# services.packagekit.enable = true;
2019-08-27 19:39:48 +00:00
};
}