Files
dotfiles/common/optional/printing.nix
Richie Cahill cdf26994a3 creating printing.nix
I dont always need printing enable. this will allows me to quickly add the printing setting when i do
2025-01-01 17:31:18 -05:00

8 lines
114 B
Nix

{ pkgs, ... }:
{
services.printing = {
enable = true;
drivers = with pkgs; [ gutenprint hplip ];
};
}