mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
39 lines
559 B
Nix
39 lines
559 B
Nix
{ 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";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
###### 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
|
|
];
|
|
|
|
};
|
|
|
|
}
|