nixos/pcscd: add 'pcscd' user and group

In preparation for pcsclite (>=2.4.0) upgrade, where this user and group
is required.
This commit is contained in:
Bjørn Forsman
2026-02-01 22:55:11 +01:00
parent a3df30af6a
commit 045a0c2af3
@@ -134,5 +134,12 @@ in
"${lib.getExe package} -f -x -c ${cfgFile} ${lib.escapeShellArgs cfg.extraArgs}"
];
};
users.users.pcscd = {
isSystemUser = true;
group = "pcscd";
};
users.groups.pcscd = { };
};
}