mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
33 lines
477 B
Nix
33 lines
477 B
Nix
|
{ config, pkgs, lib, ... }:
|
||
|
|
||
|
with lib;
|
||
|
|
||
|
{
|
||
|
|
||
|
###### interface
|
||
|
|
||
|
options = {
|
||
|
|
||
|
programs.system-config-printer = {
|
||
|
|
||
|
enable = mkEnableOption (lib.mdDoc "system-config-printer, a Graphical user interface for CUPS administration");
|
||
|
|
||
|
};
|
||
|
|
||
|
};
|
||
|
|
||
|
|
||
|
###### implementation
|
||
|
|
||
|
config = mkIf config.programs.system-config-printer.enable {
|
||
|
|
||
|
environment.systemPackages = [
|
||
|
pkgs.system-config-printer
|
||
|
];
|
||
|
|
||
|
services.system-config-printer.enable = true;
|
||
|
|
||
|
};
|
||
|
|
||
|
}
|