Add printers

This commit is contained in:
Greg Hellings
2022-06-03 15:41:45 -05:00
parent 6c87da8ce5
commit 899cfba9eb
2 changed files with 13 additions and 0 deletions
+1
View File
@@ -5,6 +5,7 @@
./boot.nix
./hardware-configuration.nix
./podman.nix
./printing.nix
./virt.nix
];
networking.hostName = "jude";
+12
View File
@@ -0,0 +1,12 @@
{ pkgs, ... }:
{
# ipp://printer.thehellings.lan:631/ - generic postscript printer
services.printing = {
enable = true;
drivers = with pkgs; [
gutenprint
gutenprintBin
];
};
}