cups: Add avahi

restic-rest-server
Simon Bruder 2020-08-30 13:20:57 +02:00
parent 28a74043c4
commit e80cf71f04
No known key found for this signature in database
GPG Key ID: 6F03E0000CC5B62F
1 changed files with 8 additions and 5 deletions

View File

@ -1,10 +1,13 @@
{ pkgs, ... }:
{
services.printing = {
enable = true;
drivers = with pkgs; [
gutenprint
];
services = {
printing = {
enable = true;
drivers = with pkgs; [
gutenprint
];
};
avahi.enable = true;
};
}