diff options
author | lassulus <lass@aidsballs.de> | 2016-10-11 17:35:53 +0200 |
---|---|---|
committer | lassulus <lass@aidsballs.de> | 2016-10-11 17:35:53 +0200 |
commit | 65494d381ea22b086f4bb30a12a58e0f7b37bf12 (patch) | |
tree | 74e7f3d0ac4814a47bc4d7ab3e4dc4559bfd0559 /lass/1systems/shodan.nix | |
parent | 58c854c657b0bcbfc7e34b743cdba18675221e32 (diff) |
l 1: explicitly add /tmp as tmpfs
Diffstat (limited to 'lass/1systems/shodan.nix')
-rw-r--r-- | lass/1systems/shodan.nix | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lass/1systems/shodan.nix b/lass/1systems/shodan.nix index af98c6968..5140591af 100644 --- a/lass/1systems/shodan.nix +++ b/lass/1systems/shodan.nix @@ -50,6 +50,11 @@ with builtins; device = "/dev/pool/home-lass"; fsType = "ext4"; }; + "/tmp" = { + device = "tmpfs"; + fsType = "tmpfs"; + options = ["nosuid" "nodev" "noatime"]; + }; }; services.udev.extraRules = '' |