Files
nix/core/security.nix
2025-03-22 14:17:10 -05:00

12 lines
172 B
Nix

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