nixos-config/hosts/thinkpad/modules/printing/default.nix

14 lines
313 B
Nix
Raw Normal View History

2023-12-01 15:07:47 +01:00
{ pkgs, ... }:
{
2024-01-14 13:17:29 +01:00
environment.systemPackages = with pkgs; [ cups ];
# services.printing = {
# enable = true;
# stateless = true;
# browsedConf = ''
# BrowsePoll cups.agdsn.network
# LocalQueueNamingRemoteCUPS RemoteName
# '';
# drivers = with pkgs; [ cups-kyocera ];
# };
2023-12-01 15:07:47 +01:00
}