mirror of
https://git.sr.ht/~rouven/nixos-config
synced 2024-11-15 21:33:11 +01:00
14 lines
313 B
Nix
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 ];
|
|
# };
|
|
}
|