mirror of
https://git.sr.ht/~rouven/nixos-config
synced 2025-01-18 17:11:39 +01:00
printing: enable
This commit is contained in:
parent
63d9cabcfb
commit
71c7cf31d2
1 changed files with 14 additions and 10 deletions
|
@ -1,13 +1,17 @@
|
||||||
{ pkgs, ... }:
|
{ pkgs, ... }:
|
||||||
{
|
{
|
||||||
environment.systemPackages = with pkgs; [ cups ];
|
# environment.systemPackages = with pkgs; [ cups ];
|
||||||
# services.printing = {
|
services.avahi = {
|
||||||
# enable = true;
|
enable = true;
|
||||||
# stateless = true;
|
nssmdns4 = true;
|
||||||
# browsedConf = ''
|
};
|
||||||
# BrowsePoll cups.agdsn.network
|
services.printing = {
|
||||||
# LocalQueueNamingRemoteCUPS RemoteName
|
enable = true;
|
||||||
# '';
|
stateless = true;
|
||||||
# drivers = with pkgs; [ cups-kyocera ];
|
browsedConf = ''
|
||||||
# };
|
BrowsePoll cups.agdsn.network
|
||||||
|
LocalQueueNamingRemoteCUPS RemoteName
|
||||||
|
'';
|
||||||
|
drivers = with pkgs; [ cups-kyocera ];
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue