blob: bb2b805fb87108c9a254f88b7b1253d40f926857 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
{
config,
pkgs,
lib,
...
}:
{
###### interface
options = {
programs.system-config-printer = {
enable = lib.mkEnableOption "system-config-printer, a Graphical user interface for CUPS administration";
};
};
###### implementation
config = lib.mkIf config.programs.system-config-printer.enable {
environment.systemPackages = [
pkgs.system-config-printer
];
services.system-config-printer.enable = true;
};
}
|