12 lines
185 B
Nix
12 lines
185 B
Nix
{ config, pkgs, device, ... }:
|
|
|
|
{
|
|
security = {
|
|
polkit.enable = true;
|
|
|
|
sudo = {
|
|
enable = true;
|
|
wheelNeedsPassword = false;
|
|
};
|
|
};
|
|
} |