diff options
Diffstat (limited to 'system/default.nix')
| -rw-r--r-- | system/default.nix | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/system/default.nix b/system/default.nix index f6a6fa3..0ee0414 100644 --- a/system/default.nix +++ b/system/default.nix @@ -32,6 +32,12 @@ # set state version system.stateVersion = config.stateVersion; + # use tmpfs on /tmp + boot.tmp = { + useTmpfs = true; + tmpfsSize = "50%"; + }; + # use system packages in home manager home-manager.useGlobalPkgs = true; |