fix(jupyter): set group explicitly
All checks were successful
/ check (push) Successful in 26s
/ build (audiomenu) (push) Successful in 2s
/ build (docs) (push) Successful in 2s
/ build (jpassmenu) (push) Successful in 2s
/ build (nixosConfigurations.vm.config.system.build.toplevel) (push) Successful in 2s
/ build (nvim) (push) Successful in 1s
All checks were successful
/ check (push) Successful in 26s
/ build (audiomenu) (push) Successful in 2s
/ build (docs) (push) Successful in 2s
/ build (jpassmenu) (push) Successful in 2s
/ build (nixosConfigurations.vm.config.system.build.toplevel) (push) Successful in 2s
/ build (nvim) (push) Successful in 1s
Not setting a group is deprecated
This commit is contained in:
parent
638d8bf81a
commit
f2530d1010
1 changed files with 4 additions and 1 deletions
|
@ -84,7 +84,10 @@ in
|
|||
openssh.authorizedKeysFiles = builtins.map (path: "/etc/${path}") (
|
||||
builtins.attrNames keysFromGithub
|
||||
);
|
||||
jupyter.enable = cfg.dev.enable;
|
||||
jupyter = {
|
||||
inherit (cfg.dev) enable;
|
||||
group = "users";
|
||||
};
|
||||
};
|
||||
users.defaultUserShell = pkgs.zsh;
|
||||
# Open ports for spotifyd
|
||||
|
|
Loading…
Reference in a new issue