mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
33 lines
465 B
Nix
33 lines
465 B
Nix
{ config, pkgs, lib, ... }:
|
|
|
|
with lib;
|
|
|
|
{
|
|
|
|
###### interface
|
|
|
|
options = {
|
|
|
|
programs.system-config-printer = {
|
|
|
|
enable = mkEnableOption "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;
|
|
|
|
};
|
|
|
|
}
|