Files
nixos/hosts/jude/printing.nix
T
2022-06-03 15:41:45 -05:00

13 lines
192 B
Nix

{ pkgs, ... }:
{
# ipp://printer.thehellings.lan:631/ - generic postscript printer
services.printing = {
enable = true;
drivers = with pkgs; [
gutenprint
gutenprintBin
];
};
}