install cups
This commit is contained in:
parent
ffe0850ac9
commit
3110f787af
2 changed files with 12 additions and 0 deletions
|
@ -4,6 +4,7 @@
|
|||
./flatpak
|
||||
./libinput
|
||||
./ollama
|
||||
./printing
|
||||
./udev
|
||||
./xserver
|
||||
];
|
||||
|
|
11
nixos/fuchsia/services/printing/default.nix
Normal file
11
nixos/fuchsia/services/printing/default.nix
Normal file
|
@ -0,0 +1,11 @@
|
|||
{...}: {
|
||||
# Enable CUPS for printing services.
|
||||
services.printing = {
|
||||
enable = true;
|
||||
# Connect to a remote CUPS server.
|
||||
clientConf = ''
|
||||
ServerName 192.168.50.249
|
||||
ServerPort 631
|
||||
'';
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue