nix/os-mods/desktop/printing.nix

22 lines
326 B
Nix
Raw Permalink Normal View History

2025-02-24 17:26:11 +01:00
{ config
, lib
, pkgs
, ...
}: {
services = {
printing = {
enable = true;
drivers = with pkgs; [
gutenprint
gutenprintBin
# hplipWithPlugin # TODO readd
brlaser
brgenml1cupswrapper
];
};
};
environment.systemPackages = with pkgs; [
cifs-utils
];
}