nixfiles/profiles/base/access.nix

11 lines
141 B
Nix

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