feat: add printer configurations and services
This commit adds configurations for two printers (Brother DCP-L2530DW and Canon MG6300 series) in the nix file. It also enables printing services and resolves DNSSEC degradation. This ensures a more seamless and secure printing experience.
This commit is contained in:
parent
90ee556acd
commit
55d2bdc640
|
@ -23,6 +23,35 @@ with lib.metacfg;
|
|||
k9s
|
||||
attic-client
|
||||
];
|
||||
services.printing.drivers = with pkgs; [
|
||||
metacfg.dcpl2530dw-cups
|
||||
gutenprintBin
|
||||
gutenprint
|
||||
];
|
||||
|
||||
services.resolved.enable = true;
|
||||
services.resolved.dnssec = "allow-downgrade";
|
||||
|
||||
hardware.printers.ensurePrinters = [
|
||||
{
|
||||
name = "Brother_DCP-L2530DW_series";
|
||||
location = "Dach";
|
||||
deviceUri = "dnssd://Brother%20DCP-L2530DW%20series._ipp._tcp.local/?uuid=e3248000-80ce-11db-8000-cc6b1e5cd0ea";
|
||||
model = "brother-DCPL2530DW-cups-en.ppd";
|
||||
ppdOptions = {
|
||||
PageSize = "A4";
|
||||
};
|
||||
}
|
||||
{
|
||||
name = "Canon_MG6300_series";
|
||||
location = "Dach";
|
||||
deviceUri = "dnssd://Canon%20MG6300%20series._ipp._tcp.local/?uuid=00000000-0000-1000-8000-2C9EFC9C7BA5";
|
||||
model = "gutenprint.5.3://bjc-PIXMA-MG6350/expert";
|
||||
ppdOptions = {
|
||||
PageSize = "A4";
|
||||
};
|
||||
}
|
||||
];
|
||||
|
||||
systemd.packages = [ pkgs.cloudflare-warp ]; # for warp-cli
|
||||
|
||||
|
|
Loading…
Reference in a new issue