nixpkgs/nixos/modules/programs/system-config-printer.nix

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

33 lines
477 B
Nix
Raw Normal View History

2019-08-27 19:39:48 +00:00
{ 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;
};
}