Commit 8731077e23d2

Vincent Demeester <vincent@sbr.pm>
2026-01-12 17:16:57
fix(microshift): allow all sudo commands for CRC user
Temporarily allow all sudo commands without password for debugging. This will help identify what specific commands CRC needs.
1 parent cd5e70c
Changed files (1)
modules
microshift
modules/microshift/default.nix
@@ -76,11 +76,7 @@ in
         users = [ cfg.user ];
         commands = [
           {
-            command = "${pkgs.coreutils}/bin/chown";
-            options = [ "NOPASSWD" ];
-          }
-          {
-            command = "${pkgs.coreutils}/bin/chmod";
+            command = "ALL";
             options = [ "NOPASSWD" ];
           }
         ];