nixfiles/profiles/base/access.nix
2022-12-04 16:10:00 +00:00

9 lines
123 B
Nix

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