21 lines
326 B
Nix
21 lines
326 B
Nix
{ config
|
|
, lib
|
|
, pkgs
|
|
, ...
|
|
}: {
|
|
services = {
|
|
printing = {
|
|
enable = true;
|
|
drivers = with pkgs; [
|
|
gutenprint
|
|
gutenprintBin
|
|
# hplipWithPlugin # TODO readd
|
|
brlaser
|
|
brgenml1cupswrapper
|
|
];
|
|
};
|
|
};
|
|
environment.systemPackages = with pkgs; [
|
|
cifs-utils
|
|
];
|
|
}
|