nixos-config/hosts/thinkpad/modules/printing/default.nix
2024-01-14 13:17:29 +01:00

14 lines
313 B
Nix

{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [ cups ];
# services.printing = {
# enable = true;
# stateless = true;
# browsedConf = ''
# BrowsePoll cups.agdsn.network
# LocalQueueNamingRemoteCUPS RemoteName
# '';
# drivers = with pkgs; [ cups-kyocera ];
# };
}