nixfiles/profiles/base/access.nix

11 lines
159 B
Nix
Raw Normal View History

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