nixos/system/security.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
213 B
Nix
Raw Normal View History

2024-02-28 02:45:05 +00:00
{ pkgs, ... }:
{
# Enable sudo
security.sudo = {
enable = true;
wheelNeedsPassword = false;
};
2024-04-17 09:16:03 +00:00
2024-05-26 23:23:12 +00:00
# Enable polkit
security.polkit.enable = true;
2024-04-17 09:16:03 +00:00
# Enable rtkit
security.rtkit.enable = true;
2024-02-28 02:45:05 +00:00
}