nixos/system/security.nix

8 lines
111 B
Nix
Raw Normal View History

2024-02-28 02:45:05 +00:00
{ pkgs, ... }: {
# Enable sudo
security.sudo = {
enable = true;
wheelNeedsPassword = false;
};
}