diff options
Diffstat (limited to 'nixos/modules')
-rw-r--r-- | nixos/modules/security.nix | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/nixos/modules/security.nix b/nixos/modules/security.nix index 80fcbaa..358f27b 100644 --- a/nixos/modules/security.nix +++ b/nixos/modules/security.nix @@ -8,11 +8,11 @@ # mount /tmp in ram. This makes temp file management faster # on ssd systems, and volatile! Because it's wiped on reboot. - boot.tmpOnTmpfs = false; - boot.tmpOnTmpfsSize = "80%"; + boot.tmp.useTmpfs = false; + boot.tmp.tmpfsSize = "80%"; # Purge /tmp on boot. (fallback option) - boot.cleanTmpDir = lib.mkDefault (!config.boot.tmpOnTmpfs); + boot.tmp.cleanOnBoot = lib.mkDefault (!config.boot.tmp.useTmpfs); boot.kernel.sysctl = { # The Magic SysRq key is a key combo that allows users connected to the |