feat: add printing capabilities
This commit is contained in:
parent
b3500b6772
commit
e5956d1e57
3 changed files with 20 additions and 0 deletions
|
@ -45,6 +45,8 @@
|
|||
sway.enable = true;
|
||||
};
|
||||
|
||||
services.printing.enable = true;
|
||||
|
||||
#: Virtualisation {{{
|
||||
virtualisation.docker = {
|
||||
enable = true;
|
||||
|
|
|
@ -14,5 +14,6 @@
|
|||
./home-manager.nix
|
||||
./system/mime.nix
|
||||
./env.nix
|
||||
./printing.nix
|
||||
];
|
||||
}
|
||||
|
|
17
modules/printing.nix
Normal file
17
modules/printing.nix
Normal 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 ];
|
||||
};
|
||||
}
|
Loading…
Add table
Reference in a new issue