nixfiles/profiles/base/access.nix

9 lines
176 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;
imports = with tree; [
home.base
];
}