nixos-init.nix: Remove /tmp -o noexec

This commit is contained in:
Robert Hensing 2019-03-11 14:38:07 +01:00
parent ac49df440f
commit c6374e0931

View file

@ -29,9 +29,9 @@ in
"/sys/fs/cgroup:/sys/fs/cgroup:ro"
];
service.tmpfs = [
"/tmp"
"/run"
"/run/wrappers"
"/tmp:exec,mode=777"
"/run" # noexec is fine because exes should be symlinked from elsewhere anyway
"/run/wrappers" # noexec breaks this intentionally
];
service.stop_signal = "SIGRTMIN+3";
service.tty = true;