nixos/system/security.nix
2024-05-24 00:04:53 +02:00

11 lines
161 B
Nix

{ pkgs, ... }: {
# Enable sudo
security.sudo = {
enable = true;
wheelNeedsPassword = false;
};
# Enable rtkit
security.rtkit.enable = true;
}