nix/os-mods/desktop/printing.nix

22 lines
326 B
Nix
Raw Normal View History

2023-12-10 05:19:43 +01:00
{ config
, lib
, pkgs
, ...
}: {
services = {
printing = {
enable = true;
drivers = with pkgs; [
gutenprint
gutenprintBin
# hplipWithPlugin # TODO readd
2023-12-10 05:19:43 +01:00
brlaser
brgenml1cupswrapper
];
};
};
environment.systemPackages = with pkgs; [
cifs-utils
];
}