Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions images/nix/flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -230,6 +230,11 @@ eval "$(direnv hook bash)"
chmod 0440 ./etc/sudoers.d/nopasswd
chown 0:0 ./etc/sudoers.d/nopasswd

# Nix store: grant the coder user ownership of the entire /nix tree
# so that single-user Nix commands (nix develop, nix build, etc.)
# can acquire locks and write to the store/db without the daemon.
chown -R 1000:1000 ./nix

# nix-ld: create the dynamic linker shim at the standard FHS path
# so unpatched binaries can find the interpreter
mkdir -p ./lib64
Expand Down
Loading