mirror of
https://github.com/RichieCahill/dotfiles.git
synced 2026-04-17 13:08:19 -04:00
I dont always need printing enable. this will allows me to quickly add the printing setting when i do
8 lines
114 B
Nix
8 lines
114 B
Nix
{ pkgs, ... }:
|
|
{
|
|
services.printing = {
|
|
enable = true;
|
|
drivers = with pkgs; [ gutenprint hplip ];
|
|
};
|
|
}
|