nixfiles/profiles/base/access.nix

8 lines
133 B
Nix
Raw Normal View History

2021-12-20 23:48:26 +00:00
{ tree, config, lib, ... }: {
security.sudo.wheelNeedsPassword = lib.mkForce false;
imports = with tree; [
home.base
];
}