nixfiles/profiles/base/access.nix

5 lines
131 B
Nix
Raw Normal View History

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