12 lines
172 B
Nix
12 lines
172 B
Nix
{ config, ... }:
|
|
|
|
{
|
|
security = {
|
|
rtkit.enable = true;
|
|
|
|
sudo = {
|
|
enable = true;
|
|
wheelNeedsPassword = false;
|
|
};
|
|
};
|
|
} |