install cups

This commit is contained in:
♥ Minnie ♥ 2025-07-06 23:46:38 +08:00
parent ffe0850ac9
commit 3110f787af
Signed by: jasmine
GPG key ID: 8563E358D4E8040E
2 changed files with 12 additions and 0 deletions

View file

@ -4,6 +4,7 @@
./flatpak ./flatpak
./libinput ./libinput
./ollama ./ollama
./printing
./udev ./udev
./xserver ./xserver
]; ];

View 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
'';
};
}