From 1f06e90cfc2ec98020a5a4a11a50897526eae022 Mon Sep 17 00:00:00 2001 From: Astro Date: Fri, 30 Apr 2021 22:39:24 +0200 Subject: [PATCH] nixos-module/defaults: enable boot.tmpOnTmpfs --- nix/nixos-module/defaults.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/nix/nixos-module/defaults.nix b/nix/nixos-module/defaults.nix index 969e183..59e6a30 100644 --- a/nix/nixos-module/defaults.nix +++ b/nix/nixos-module/defaults.nix @@ -7,6 +7,7 @@ # Prevents automatic creation of interface bond0 by the kernel "bonding.max_bonds=0" ]; + boot.tmpOnTmpfs = true; # Includes wireguard boot.kernelPackages = pkgs.linuxPackages_latest;