cups: Add gutenprint

This commit is contained in:
Simon Bruder 2020-08-29 23:54:35 +02:00
parent e4a0522fce
commit e5d99a49fa
No known key found for this signature in database
GPG key ID: 6F03E0000CC5B62F

View file

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