fix(jupyter): set group explicitly #107
1 changed files with 4 additions and 1 deletions
|
@ -84,7 +84,10 @@ in
|
||||||
openssh.authorizedKeysFiles = builtins.map (path: "/etc/${path}") (
|
openssh.authorizedKeysFiles = builtins.map (path: "/etc/${path}") (
|
||||||
builtins.attrNames keysFromGithub
|
builtins.attrNames keysFromGithub
|
||||||
);
|
);
|
||||||
jupyter.enable = cfg.dev.enable;
|
jupyter = {
|
||||||
|
inherit (cfg.dev) enable;
|
||||||
|
group = "users";
|
||||||
|
};
|
||||||
};
|
};
|
||||||
users.defaultUserShell = pkgs.zsh;
|
users.defaultUserShell = pkgs.zsh;
|
||||||
# Open ports for spotifyd
|
# Open ports for spotifyd
|
||||||
|
|
Loading…
Reference in a new issue