nixos/system/security.nix
Torjus Håkestad 8e3c2a79b9
Some checks are pending
pre-commit / pre-commit (push) Waiting to run
Enable rtkit
2024-04-17 11:16:03 +02:00

11 lines
161 B
Nix

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