9 lines
119 B
Nix
9 lines
119 B
Nix
{ config, pkgs, ... }:
|
|
{
|
|
# Enable sudo
|
|
security.sudo = {
|
|
enable = true;
|
|
wheelNeedsPassword = false;
|
|
};
|
|
}
|