From 0d735a6c49ac2f73aa919305791589d1e71c762c Mon Sep 17 00:00:00 2001 From: Greg Hellings Date: Tue, 16 Apr 2024 15:09:19 -0500 Subject: [PATCH] Fix permissions in creation --- flake.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index 86d2dbd..1def980 100644 --- a/flake.nix +++ b/flake.nix @@ -38,10 +38,11 @@ shellcheck (xonsh.overridePythonAttrs (old: rec { python3 = basicPython; propagatedBuildInputs = old.propagatedBuildInputs ++ [ basicPython.pkgs.pyyaml ];})) ]; - extraCommands = builtins.concatStringsSep "\n" [ + fakeRootCommands = builtins.concatStringsSep "\n" [ "mkdir -p /tmp" "chmod -R 777 /tmp" ]; + enableFakechroot = true; }; }; };