summaryrefslogtreecommitdiff
path: root/modules/nixos/common/tmp.nix
diff options
context:
space:
mode:
Diffstat (limited to 'modules/nixos/common/tmp.nix')
-rw-r--r--modules/nixos/common/tmp.nix18
1 files changed, 0 insertions, 18 deletions
diff --git a/modules/nixos/common/tmp.nix b/modules/nixos/common/tmp.nix
deleted file mode 100644
index d56e2b6..0000000
--- a/modules/nixos/common/tmp.nix
+++ /dev/null
@@ -1,18 +0,0 @@
-_: {
- systemd.mounts = [
- {
- type = "tmpfs";
- what = "tmpfs";
- where = "/tmp";
- mountConfig.Options = [
- "huge=within_size"
- "mode=1777"
- "noatime"
- "nodev"
- "nosuid"
- "rw"
- "size=25%"
- ];
- }
- ];
-}