Skip to content

Commit

Permalink
Merge pull request #11 from Openmesh-Network/fix/jupyter
Browse files Browse the repository at this point in the history
fix jupyter user group
  • Loading branch information
harrys522 authored Aug 5, 2024
2 parents 80a8d71 + 588bb7f commit 2aaee9e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nixos/modules/services/development/jupyter/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ in {
})
(mkIf (cfg.enable && (cfg.user == "jupyter")) {
users.extraUsers.jupyter = {
extraGroups = [ cfg.group ];
group = [ cfg.group ]; # Required since a user's group attribute cannot be unset as this is unsafe.
home = "/var/lib/jupyter";
createHome = true;
isSystemUser = true;
Expand Down

0 comments on commit 2aaee9e

Please sign in to comment.