This commit is contained in:
2026-02-18 21:04:19 -07:00
parent e42a65cc6e
commit e1673c5f10
2 changed files with 10 additions and 2 deletions

View File

@@ -128,6 +128,11 @@
]; ];
services.envfs.enable = true; services.envfs.enable = true;
security.sudo = {
enable = true;
wheelNeedsPassword = true;
};
# printing # printing
services.printing = { services.printing = {
enable = true; enable = true;

View File

@@ -27,7 +27,6 @@
kubectl kubectl
kubernetes-helm kubernetes-helm
curl curl
sudo
]; ];
settings = { settings = {
container = { container = {
@@ -61,7 +60,11 @@
commands = [ commands = [
{ {
command = "${pkgs.nix}/bin/nix-collect-garbage"; command = "${pkgs.nix}/bin/nix-collect-garbage";
options = [ "NOPASSWD" ]; options = [ "NOPASSWD" "SETENV" ];
}
{
command = "${pkgs.nix}/bin/nix-env";
options = [ "NOPASSWD" "SETENV" ];
} }
]; ];
} }