nixos/cupsd: create lpadmin group and add it SystemGroups

Useful for giving users full admin permissions over printing.
This commit is contained in:
Shahar "Dawn" Or 2025-06-25 21:47:39 +07:00 committed by Bjørn Forsman
parent d87d101acc
commit 5d4fd2fd9a

View File

@ -71,7 +71,7 @@ let
};
cupsFilesFile = writeConf "cups-files.conf" ''
SystemGroup root wheel
SystemGroup root wheel lpadmin
ServerBin ${bindir}/lib/cups
DataDir ${bindir}/share/cups
@ -361,10 +361,15 @@ in
config = mkIf config.services.printing.enable {
users.users.cups = {
uid = config.ids.uids.cups;
group = "lp";
description = "CUPS printing services";
users = {
users.cups = {
uid = config.ids.uids.cups;
group = "lp";
description = "CUPS printing services";
};
# It seems that groups provided for `SystemGroup` must exist
groups.lpadmin = { };
};
# We need xdg-open (part of xdg-utils) for the desktop-file to proper open the users default-browser when opening "Manage Printing"