Fix permissions in creation

This commit is contained in:
Greg Hellings
2024-04-16 15:09:19 -05:00
parent 0d41929fb6
commit 0d735a6c49
+2 -1
View File
@@ -38,10 +38,11 @@
shellcheck shellcheck
(xonsh.overridePythonAttrs (old: rec { python3 = basicPython; propagatedBuildInputs = old.propagatedBuildInputs ++ [ basicPython.pkgs.pyyaml ];})) (xonsh.overridePythonAttrs (old: rec { python3 = basicPython; propagatedBuildInputs = old.propagatedBuildInputs ++ [ basicPython.pkgs.pyyaml ];}))
]; ];
extraCommands = builtins.concatStringsSep "\n" [ fakeRootCommands = builtins.concatStringsSep "\n" [
"mkdir -p /tmp" "mkdir -p /tmp"
"chmod -R 777 /tmp" "chmod -R 777 /tmp"
]; ];
enableFakechroot = true;
}; };
}; };
}; };