2014-04-14 14:26:48 +00:00
|
|
|
{ config, lib, pkgs, ... }:
|
2009-03-06 12:26:46 +00:00
|
|
|
|
2014-04-14 14:26:48 +00:00
|
|
|
with lib;
|
2007-04-02 17:31:58 +00:00
|
|
|
|
|
|
|
let
|
|
|
|
|
2014-12-11 12:27:29 +00:00
|
|
|
inherit (pkgs) cups cups_filters;
|
2008-11-07 13:37:28 +00:00
|
|
|
|
2009-08-27 23:16:09 +00:00
|
|
|
cfg = config.services.printing;
|
2008-11-07 13:37:28 +00:00
|
|
|
|
2012-05-25 15:51:33 +00:00
|
|
|
additionalBackends = pkgs.runCommand "additional-cups-backends" { }
|
|
|
|
''
|
|
|
|
mkdir -p $out
|
2014-12-16 17:22:22 +00:00
|
|
|
if [ ! -e ${cups}/lib/cups/backend/smb ]; then
|
2012-05-25 15:51:33 +00:00
|
|
|
mkdir -p $out/lib/cups/backend
|
2010-12-15 22:36:39 +00:00
|
|
|
ln -sv ${pkgs.samba}/bin/smbspool $out/lib/cups/backend/smb
|
2010-04-25 18:27:00 +00:00
|
|
|
fi
|
2010-04-19 10:54:39 +00:00
|
|
|
|
|
|
|
# Provide support for printing via HTTPS.
|
2014-12-16 17:22:22 +00:00
|
|
|
if [ ! -e ${cups}/lib/cups/backend/https ]; then
|
2012-05-25 15:51:33 +00:00
|
|
|
mkdir -p $out/lib/cups/backend
|
2014-12-16 17:22:22 +00:00
|
|
|
ln -sv ${cups}/lib/cups/backend/ipp $out/lib/cups/backend/https
|
2010-04-25 18:27:00 +00:00
|
|
|
fi
|
2010-04-19 10:54:39 +00:00
|
|
|
'';
|
|
|
|
|
2008-11-07 13:37:28 +00:00
|
|
|
# Here we can enable additional backends, filters, etc. that are not
|
|
|
|
# part of CUPS itself, e.g. the SMB backend is part of Samba. Since
|
|
|
|
# we can't update ${cups}/lib/cups itself, we create a symlink tree
|
|
|
|
# here and add the additional programs. The ServerBin directive in
|
|
|
|
# cupsd.conf tells cupsd to use this tree.
|
2010-04-15 15:47:07 +00:00
|
|
|
bindir = pkgs.buildEnv {
|
|
|
|
name = "cups-progs";
|
2010-04-25 18:27:00 +00:00
|
|
|
paths = cfg.drivers;
|
2014-06-11 19:52:53 +00:00
|
|
|
pathsToLink = [ "/lib/cups" "/share/cups" "/bin" "/etc/cups" ];
|
2010-04-25 18:27:00 +00:00
|
|
|
postBuild = cfg.bindirCmds;
|
2014-11-24 16:40:03 +00:00
|
|
|
ignoreCollisions = true;
|
2010-04-15 15:47:07 +00:00
|
|
|
};
|
2007-04-02 17:31:58 +00:00
|
|
|
|
2009-10-12 16:36:19 +00:00
|
|
|
in
|
2007-04-02 17:31:58 +00:00
|
|
|
|
2009-10-12 16:36:19 +00:00
|
|
|
{
|
2007-04-02 17:31:58 +00:00
|
|
|
|
2009-10-12 16:36:19 +00:00
|
|
|
###### interface
|
|
|
|
|
|
|
|
options = {
|
|
|
|
services.printing = {
|
|
|
|
|
|
|
|
enable = mkOption {
|
2013-10-30 16:37:45 +00:00
|
|
|
type = types.bool;
|
2009-10-12 16:36:19 +00:00
|
|
|
default = false;
|
|
|
|
description = ''
|
|
|
|
Whether to enable printing support through the CUPS daemon.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2014-04-24 22:30:12 +00:00
|
|
|
listenAddresses = mkOption {
|
|
|
|
type = types.listOf types.str;
|
|
|
|
default = [ "127.0.0.1:631" ];
|
|
|
|
example = [ "*:631" ];
|
|
|
|
description = ''
|
|
|
|
A list of addresses and ports on which to listen.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2009-10-12 16:36:19 +00:00
|
|
|
bindirCmds = mkOption {
|
2013-10-30 16:37:45 +00:00
|
|
|
type = types.lines;
|
|
|
|
internal = true;
|
2009-10-12 16:36:19 +00:00
|
|
|
default = "";
|
|
|
|
description = ''
|
|
|
|
Additional commands executed while creating the directory
|
|
|
|
containing the CUPS server binaries.
|
|
|
|
'';
|
|
|
|
};
|
2007-04-02 17:31:58 +00:00
|
|
|
|
2015-05-04 20:32:35 +00:00
|
|
|
defaultShared = mkOption {
|
|
|
|
type = types.bool;
|
|
|
|
default = false;
|
|
|
|
description = ''
|
|
|
|
Specifies whether local printers are shared by default.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2015-05-10 18:47:50 +00:00
|
|
|
browsing = mkOption {
|
2015-05-04 20:32:35 +00:00
|
|
|
type = types.bool;
|
|
|
|
default = false;
|
|
|
|
description = ''
|
|
|
|
Specifies whether shared printers are advertised.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
webInterface = mkOption {
|
|
|
|
type = types.bool;
|
|
|
|
default = true;
|
|
|
|
description = ''
|
|
|
|
Specifies whether the web interface is enabled.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2010-04-06 11:57:15 +00:00
|
|
|
cupsdConf = mkOption {
|
2013-10-30 16:37:45 +00:00
|
|
|
type = types.lines;
|
2010-04-06 11:57:15 +00:00
|
|
|
default = "";
|
2010-04-06 13:25:00 +00:00
|
|
|
example =
|
|
|
|
''
|
|
|
|
BrowsePoll cups.example.com
|
|
|
|
LogLevel debug
|
|
|
|
'';
|
2010-04-06 11:57:15 +00:00
|
|
|
description = ''
|
|
|
|
The contents of the configuration file of the CUPS daemon
|
|
|
|
(<filename>cupsd.conf</filename>).
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2014-12-16 02:12:02 +00:00
|
|
|
cupsFilesConf = mkOption {
|
|
|
|
type = types.lines;
|
|
|
|
default = "";
|
|
|
|
description = ''
|
|
|
|
The contents of the configuration file of the CUPS daemon
|
|
|
|
(<filename>cups-files.conf</filename>).
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2014-11-27 19:00:56 +00:00
|
|
|
extraConf = mkOption {
|
|
|
|
type = types.lines;
|
|
|
|
default = "";
|
|
|
|
example =
|
|
|
|
''
|
|
|
|
BrowsePoll cups.example.com
|
|
|
|
LogLevel debug
|
|
|
|
'';
|
|
|
|
description = ''
|
|
|
|
Extra contents of the configuration file of the CUPS daemon
|
|
|
|
(<filename>cupsd.conf</filename>).
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2014-06-11 19:52:53 +00:00
|
|
|
clientConf = mkOption {
|
|
|
|
type = types.lines;
|
|
|
|
default = "";
|
|
|
|
example =
|
|
|
|
''
|
|
|
|
ServerName server.example.com
|
|
|
|
Encryption Never
|
|
|
|
'';
|
|
|
|
description = ''
|
|
|
|
The contents of the client configuration.
|
|
|
|
(<filename>client.conf</filename>)
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2014-12-11 12:27:29 +00:00
|
|
|
browsedConf = mkOption {
|
|
|
|
type = types.lines;
|
|
|
|
default = "";
|
|
|
|
example =
|
|
|
|
''
|
|
|
|
BrowsePoll cups.example.com
|
|
|
|
'';
|
|
|
|
description = ''
|
|
|
|
The contents of the configuration. file of the CUPS Browsed daemon
|
|
|
|
(<filename>cups-browsed.conf</filename>)
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2015-08-13 08:12:52 +00:00
|
|
|
snmpConf = mkOption {
|
|
|
|
type = types.lines;
|
|
|
|
default = ''
|
|
|
|
Address @LOCAL
|
|
|
|
'';
|
|
|
|
description = ''
|
|
|
|
The contents of <filename>/etc/cups/snmp.conf</filename>. See "man
|
|
|
|
cups-snmp.conf" for a complete description.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2010-04-15 15:47:07 +00:00
|
|
|
drivers = mkOption {
|
2013-10-30 16:37:45 +00:00
|
|
|
type = types.listOf types.path;
|
|
|
|
example = literalExample "[ pkgs.splix ]";
|
2010-04-15 15:47:07 +00:00
|
|
|
description = ''
|
2014-11-23 16:51:55 +00:00
|
|
|
CUPS drivers to use. Drivers provided by CUPS, cups-filters, Ghostscript
|
2013-10-30 16:37:45 +00:00
|
|
|
and Samba are added unconditionally.
|
2010-04-15 15:47:07 +00:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2010-04-25 18:27:00 +00:00
|
|
|
tempDir = mkOption {
|
2013-10-30 16:37:45 +00:00
|
|
|
type = types.path;
|
2010-04-25 18:27:00 +00:00
|
|
|
default = "/tmp";
|
|
|
|
example = "/tmp/cups";
|
|
|
|
description = ''
|
|
|
|
CUPSd temporary directory.
|
|
|
|
'';
|
|
|
|
};
|
2009-10-12 16:36:19 +00:00
|
|
|
};
|
2009-02-22 16:07:05 +00:00
|
|
|
|
2009-10-12 16:36:19 +00:00
|
|
|
};
|
2009-02-22 16:07:05 +00:00
|
|
|
|
2010-04-25 18:27:00 +00:00
|
|
|
|
2009-10-12 16:36:19 +00:00
|
|
|
###### implementation
|
2009-07-15 09:06:36 +00:00
|
|
|
|
2009-10-12 16:36:19 +00:00
|
|
|
config = mkIf config.services.printing.enable {
|
2009-07-15 09:06:36 +00:00
|
|
|
|
2010-08-06 14:52:09 +00:00
|
|
|
users.extraUsers = singleton
|
|
|
|
{ name = "cups";
|
|
|
|
uid = config.ids.uids.cups;
|
|
|
|
group = "lp";
|
|
|
|
description = "CUPS printing services";
|
|
|
|
};
|
|
|
|
|
|
|
|
environment.systemPackages = [ cups ];
|
2009-07-15 09:06:36 +00:00
|
|
|
|
2014-12-16 17:18:24 +00:00
|
|
|
environment.etc."cups/client.conf".text = cfg.clientConf;
|
|
|
|
environment.etc."cups/cups-files.conf".text = cfg.cupsFilesConf;
|
|
|
|
environment.etc."cups/cupsd.conf".text = cfg.cupsdConf;
|
2014-12-11 12:27:29 +00:00
|
|
|
environment.etc."cups/cups-browsed.conf".text = cfg.browsedConf;
|
2015-08-13 08:12:52 +00:00
|
|
|
environment.etc."cups/snmp.conf".text = cfg.snmpConf;
|
2014-06-11 19:52:53 +00:00
|
|
|
|
2010-08-06 14:52:09 +00:00
|
|
|
services.dbus.packages = [ cups ];
|
2009-11-04 22:44:21 +00:00
|
|
|
|
2010-08-06 14:52:09 +00:00
|
|
|
# Cups uses libusb to talk to printers, and does not use the
|
2010-06-07 21:09:27 +00:00
|
|
|
# linux kernel driver. If the driver is not in a black list, it
|
|
|
|
# gets loaded, and then cups cannot access the printers.
|
|
|
|
boot.blacklistedKernelModules = [ "usblp" ];
|
|
|
|
|
2015-04-28 18:37:34 +00:00
|
|
|
systemd.packages = [ cups ];
|
2009-03-06 12:26:46 +00:00
|
|
|
|
2015-04-28 18:37:34 +00:00
|
|
|
systemd.services.cups =
|
|
|
|
{ wantedBy = [ "multi-user.target" ];
|
2014-04-24 20:46:26 +00:00
|
|
|
wants = [ "network.target" ];
|
|
|
|
after = [ "network.target" ];
|
2009-10-12 16:36:19 +00:00
|
|
|
|
2012-05-25 15:51:33 +00:00
|
|
|
path = [ cups ];
|
2010-06-07 21:09:27 +00:00
|
|
|
|
2009-10-12 16:36:19 +00:00
|
|
|
preStart =
|
|
|
|
''
|
2011-09-23 14:41:22 +00:00
|
|
|
mkdir -m 0755 -p /etc/cups
|
2009-03-06 12:26:46 +00:00
|
|
|
mkdir -m 0700 -p /var/cache/cups
|
|
|
|
mkdir -m 0700 -p /var/spool/cups
|
2010-04-25 18:27:00 +00:00
|
|
|
mkdir -m 0755 -p ${cfg.tempDir}
|
2009-10-12 16:36:19 +00:00
|
|
|
'';
|
2009-03-06 12:26:46 +00:00
|
|
|
|
2014-12-16 17:22:22 +00:00
|
|
|
restartTriggers =
|
|
|
|
[ config.environment.etc."cups/cups-files.conf".source
|
|
|
|
config.environment.etc."cups/cupsd.conf".source
|
|
|
|
];
|
2009-10-12 16:36:19 +00:00
|
|
|
};
|
|
|
|
|
2015-08-04 14:40:02 +00:00
|
|
|
systemd.services.cups-browsed = mkIf config.services.avahi.enable
|
|
|
|
{ description = "CUPS Remote Printer Discovery";
|
2014-12-11 12:27:29 +00:00
|
|
|
|
|
|
|
wantedBy = [ "multi-user.target" ];
|
|
|
|
wants = [ "cups.service" "avahi-daemon.service" ];
|
|
|
|
after = [ "cups.service" "avahi-daemon.service" ];
|
|
|
|
|
|
|
|
path = [ cups ];
|
|
|
|
|
|
|
|
serviceConfig.ExecStart = "${cups_filters}/bin/cups-browsed";
|
|
|
|
|
|
|
|
restartTriggers =
|
|
|
|
[ config.environment.etc."cups/cups-browsed.conf".source
|
|
|
|
];
|
|
|
|
};
|
|
|
|
|
2012-05-25 15:51:33 +00:00
|
|
|
services.printing.drivers =
|
2014-12-16 17:22:22 +00:00
|
|
|
[ cups pkgs.ghostscript pkgs.cups_filters additionalBackends
|
2014-02-10 21:33:57 +00:00
|
|
|
pkgs.perl pkgs.coreutils pkgs.gnused pkgs.bc pkgs.gawk pkgs.gnugrep
|
2014-04-24 20:46:26 +00:00
|
|
|
];
|
2011-09-14 18:20:50 +00:00
|
|
|
|
2014-12-16 02:12:02 +00:00
|
|
|
services.printing.cupsFilesConf =
|
2010-04-06 11:57:15 +00:00
|
|
|
''
|
2013-12-01 22:29:22 +00:00
|
|
|
SystemGroup root wheel
|
2010-04-06 11:57:15 +00:00
|
|
|
|
|
|
|
ServerBin ${bindir}/lib/cups
|
2012-01-11 20:48:40 +00:00
|
|
|
DataDir ${bindir}/share/cups
|
2010-04-06 11:57:15 +00:00
|
|
|
|
2013-09-26 19:04:43 +00:00
|
|
|
AccessLog syslog
|
|
|
|
ErrorLog syslog
|
|
|
|
PageLog syslog
|
2010-04-06 11:57:15 +00:00
|
|
|
|
2010-04-25 18:27:00 +00:00
|
|
|
TempDir ${cfg.tempDir}
|
2010-04-06 11:57:15 +00:00
|
|
|
|
2010-08-06 14:52:09 +00:00
|
|
|
# User and group used to run external programs, including
|
|
|
|
# those that actually send the job to the printer. Note that
|
|
|
|
# Udev sets the group of printer devices to `lp', so we want
|
|
|
|
# these programs to run as `lp' as well.
|
|
|
|
User cups
|
|
|
|
Group lp
|
2014-12-16 02:12:02 +00:00
|
|
|
'';
|
|
|
|
|
|
|
|
services.printing.cupsdConf =
|
|
|
|
''
|
|
|
|
LogLevel info
|
|
|
|
|
|
|
|
${concatMapStrings (addr: ''
|
|
|
|
Listen ${addr}
|
|
|
|
'') cfg.listenAddresses}
|
|
|
|
Listen /var/run/cups/cups.sock
|
|
|
|
|
|
|
|
SetEnv PATH ${bindir}/lib/cups/filter:${bindir}/bin:${bindir}/sbin
|
2010-08-06 14:52:09 +00:00
|
|
|
|
2015-05-04 20:32:35 +00:00
|
|
|
DefaultShared ${if cfg.defaultShared then "Yes" else "No"}
|
|
|
|
|
2015-05-10 18:47:50 +00:00
|
|
|
Browsing ${if cfg.browsing then "Yes" else "No"}
|
2015-05-04 20:32:35 +00:00
|
|
|
|
|
|
|
WebInterface ${if cfg.webInterface then "Yes" else "No"}
|
2010-04-06 11:57:15 +00:00
|
|
|
|
|
|
|
DefaultAuthType Basic
|
|
|
|
|
|
|
|
<Location />
|
|
|
|
Order allow,deny
|
|
|
|
Allow localhost
|
|
|
|
</Location>
|
|
|
|
|
|
|
|
<Location /admin>
|
|
|
|
Order allow,deny
|
|
|
|
Allow localhost
|
|
|
|
</Location>
|
|
|
|
|
|
|
|
<Location /admin/conf>
|
|
|
|
AuthType Basic
|
|
|
|
Require user @SYSTEM
|
|
|
|
Order allow,deny
|
|
|
|
Allow localhost
|
|
|
|
</Location>
|
|
|
|
|
|
|
|
<Policy default>
|
|
|
|
<Limit Send-Document Send-URI Hold-Job Release-Job Restart-Job Purge-Jobs Set-Job-Attributes Create-Job-Subscription Renew-Subscription Cancel-Subscription Get-Notifications Reprocess-Job Cancel-Current-Job Suspend-Current-Job Resume-Job CUPS-Move-Job>
|
|
|
|
Require user @OWNER @SYSTEM
|
|
|
|
Order deny,allow
|
|
|
|
</Limit>
|
|
|
|
|
|
|
|
<Limit Pause-Printer Resume-Printer Set-Printer-Attributes Enable-Printer Disable-Printer Pause-Printer-After-Current-Job Hold-New-Jobs Release-Held-New-Jobs Deactivate-Printer Activate-Printer Restart-Printer Shutdown-Printer Startup-Printer Promote-Job Schedule-Job-After CUPS-Add-Printer CUPS-Delete-Printer CUPS-Add-Class CUPS-Delete-Class CUPS-Accept-Jobs CUPS-Reject-Jobs CUPS-Set-Default>
|
|
|
|
AuthType Basic
|
|
|
|
Require user @SYSTEM
|
|
|
|
Order deny,allow
|
|
|
|
</Limit>
|
|
|
|
|
|
|
|
<Limit Cancel-Job CUPS-Authenticate-Job>
|
|
|
|
Require user @OWNER @SYSTEM
|
|
|
|
Order deny,allow
|
|
|
|
</Limit>
|
|
|
|
|
|
|
|
<Limit All>
|
|
|
|
Order deny,allow
|
|
|
|
</Limit>
|
|
|
|
</Policy>
|
2014-12-16 17:22:22 +00:00
|
|
|
|
2014-11-27 19:00:56 +00:00
|
|
|
${cfg.extraConf}
|
2010-04-06 11:57:15 +00:00
|
|
|
'';
|
|
|
|
|
2013-10-15 12:47:51 +00:00
|
|
|
security.pam.services.cups = {};
|
|
|
|
|
2009-10-12 16:36:19 +00:00
|
|
|
};
|
2007-04-02 17:31:58 +00:00
|
|
|
}
|