nixfiles/profiles/base/access.nix

9 lines
123 B
Nix
Raw Normal View History

{
lib,
pkgs,
...
}: {
2021-12-21 00:07:05 +00:00
users.defaultUserShell = pkgs.zsh;
2021-12-20 23:48:26 +00:00
security.sudo.wheelNeedsPassword = lib.mkForce false;
}