Add support for hplip (HP printers)

This commit is contained in:
ItsDrike 2024-06-19 19:22:02 +02:00
parent 8dd2a143ac
commit bb1915e3dd
Signed by: ItsDrike
GPG key ID: FA2745890B7048C0
3 changed files with 12 additions and 2 deletions

View file

@ -98,7 +98,10 @@
};
workstation = {
printing.enable = true;
printing = {
enable = true;
hplip.enable = true;
};
};
home-manager = {

View file

@ -11,6 +11,10 @@ in
Also adds some drivers for common printers.
'';
hplip.enable = mkEnableOption ''
HP printing support using hplip software.
'';
};
};
}

View file

@ -1,5 +1,5 @@
{ pkgs, lib, config, ...}: let
inherit (lib) mkIf;
inherit (lib) mkIf optional;
deviceType = config.myOptions.device.roles.type;
acceptedTypes = ["laptop" "desktop"];
@ -26,5 +26,8 @@ in {
openFirewall = true;
};
};
environment.systemPackages = optional cfg.hplip.enable pkgs.hplip;
myOptions.system.impermanence.home.extraDirectories = optional cfg.hplip.enable ".hplip";
};
}