feat: add printing capabilities

This commit is contained in:
Nydragon 2024-07-11 17:35:06 +00:00
parent b3500b6772
commit e5956d1e57
3 changed files with 20 additions and 0 deletions

View file

@ -45,6 +45,8 @@
sway.enable = true;
};
services.printing.enable = true;
#: Virtualisation {{{
virtualisation.docker = {
enable = true;

View file

@ -14,5 +14,6 @@
./home-manager.nix
./system/mime.nix
./env.nix
./printing.nix
];
}

17
modules/printing.nix Normal file
View file

@ -0,0 +1,17 @@
{
lib,
config,
pkgs,
...
}:
lib.mkIf config.services.printing.enable {
services.avahi = {
enable = true;
nssmdns = true;
openFirewall = true;
};
services.printing = {
drivers = with pkgs; [ hplip ];
};
}