nixos-config/modules/cups.nix

11 lines
119 B
Nix
Raw Normal View History

2020-08-29 23:54:35 +02:00
{ pkgs, ... }:
2020-08-22 17:44:39 +02:00
{
2020-08-29 23:54:35 +02:00
services.printing = {
enable = true;
drivers = with pkgs; [
gutenprint
];
};
2020-08-22 17:44:39 +02:00
}