mirror of
https://gitlab.com/Zaney/zaneyos.git
synced 2024-11-22 14:43:08 +01:00
22 lines
519 B
Nix
22 lines
519 B
Nix
{ config, lib, pkgs, username, ... }:
|
|
|
|
let inherit (import ../../options.nix) printer; in
|
|
lib.mkIf (printer == true) {
|
|
services = {
|
|
printing.enable = true;
|
|
avahi = {
|
|
enable = true;
|
|
nssmdns4 = true;
|
|
openFirewall = true;
|
|
};
|
|
ipp-usb.enable = true;
|
|
};
|
|
hardware.sane = {
|
|
enable = true;
|
|
extraBackends = [pkgs.sane-airscan];
|
|
disabledDefaultBackends = ["escl"];
|
|
};
|
|
programs.system-config-printer.enable = true;
|
|
users.users.${username}.extraGroups = ["scanner" "lp"];
|
|
}
|