about summary refs log tree commit diff
path: root/hosts/common/system/boot.nix
diff options
context:
space:
mode:
Diffstat (limited to 'hosts/common/system/boot.nix')
-rw-r--r--hosts/common/system/boot.nix8
1 files changed, 8 insertions, 0 deletions
diff --git a/hosts/common/system/boot.nix b/hosts/common/system/boot.nix
new file mode 100644
index 0000000..974b072
--- /dev/null
+++ b/hosts/common/system/boot.nix
@@ -0,0 +1,8 @@
+{ pkgs, config, lib, ... }:
+
+{
+  boot = {
+    kernelPackages = pkgs.linuxPackages_latest;
+    tmpOnTmpfs = true;
+  };
+}