Files
nix/core/security.nix
2025-03-22 16:27:01 -05:00

13 lines
163 B
Nix

{ ... }:
{
security = {
rtkit.enable = true;
sudo = {
enable = true;
wheelNeedsPassword = false;
};
};
}