Retire zion as printing and scan server

This commit is contained in:
2020-09-29 00:33:45 +02:00
parent b089c72df1
commit fbc91f7d01
3 changed files with 0 additions and 32 deletions

View File

@@ -1,30 +0,0 @@
# CUPS and SANE configuration
{ config, pkgs, lib, ... }: {
# Enable CUPS with Zeroconf
services.printing = {
enable = true;
drivers = with pkgs; [ hplip ];
browsing = true;
listenAddresses = [ "0.0.0.0:631" ];
defaultShared = true;
};
# Enable SANE
hardware.sane = {
enable = true;
extraBackends = with pkgs; [ hplip ];
};
# Allow scanning over LAN and VPN
services.saned = {
enable = true;
extraConfig = ''
192.168.1.0/24
10.8.0.2/32
'';
};
# Give SANE access to the printer
users.users.scanner = { extraGroups = [ "lp" ]; };
}