nixfiles/profiles/base/access.nix
2021-12-26 14:07:09 +00:00

5 lines
131 B
Nix

{ tree, config, lib, pkgs, ... }: {
users.defaultUserShell = pkgs.zsh;
security.sudo.wheelNeedsPassword = lib.mkForce false;
}