1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-17 19:21:04 +00:00

nixos/jupyter: set user primary group (#349415)

This commit is contained in:
Atemu 2024-10-18 12:05:43 +02:00 committed by GitHub
commit dddcb35140
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -185,7 +185,7 @@ in {
})
(lib.mkIf (cfg.enable && (cfg.user == "jupyter")) {
users.extraUsers.jupyter = {
extraGroups = [ cfg.group ];
inherit (cfg) group;
home = "/var/lib/jupyter";
createHome = true;
isSystemUser = true;