10 lines
142 B
Nix
10 lines
142 B
Nix
{ config, pkgs, ... }:
|
|
{
|
|
security = {
|
|
doas = {
|
|
enable = true;
|
|
extraConfig = "permit nopass keepenv :wheel";
|
|
};
|
|
};
|
|
}
|