nix: fix /tmp permissions

The /tmp folder was missing the sticky bit
This commit is contained in:
zimbatm 2020-02-23 20:09:34 +01:00
parent 8ceae9d833
commit 669e1a3129
No known key found for this signature in database
GPG key ID: 71BAF6D40C1D63D7

View file

@ -41,7 +41,7 @@ let
ln -s ../bin usr/bin
# make sure /tmp exists
mkdir -m 0777 tmp
mkdir -m 1777 tmp
'';
config = {