mirror of
https://git.sr.ht/~rouven/nixos-config
synced 2025-01-19 01:21:39 +01:00
13 lines
313 B
Nix
13 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 ];
|
|
# };
|
|
}
|