mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-06-17 02:25:12 -05:00
17 lines
280 B
Nix
Executable file
17 lines
280 B
Nix
Executable file
{flake, ...}: let
|
|
inherit (flake.config.people) user0;
|
|
in {
|
|
security = {
|
|
doas = {
|
|
enable = true;
|
|
extraRules = [
|
|
{
|
|
keepEnv = true;
|
|
noPass = true;
|
|
users = [user0];
|
|
}
|
|
];
|
|
};
|
|
# sudo.enable = false;
|
|
};
|
|
}
|