nixos/system/security.nix

8 lines
119 B
Nix
Raw Normal View History

2024-03-18 12:11:31 +00:00
{ config, pkgs, ... }: {
2024-03-18 11:58:34 +00:00
# Enable sudo
security.sudo = {
enable = true;
wheelNeedsPassword = false;
};
}