nixos-config/modules/cups.nix

14 lines
167 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-30 13:20:57 +02:00
services = {
printing = {
enable = true;
drivers = with pkgs; [
gutenprint
];
};
avahi.enable = true;
2020-08-29 23:54:35 +02:00
};
2020-08-22 17:44:39 +02:00
}