about summary refs log tree commit diff stats
path: root/system/boot/boot.nix
diff options
context:
space:
mode:
authorene <ene@sils.li>2023-02-04 22:17:24 +0100
committerene <ene@sils.li>2023-02-04 22:22:59 +0100
commita433b7df295f924bc3259fdb7ece389a31ae3181 (patch)
treed30708b708e631ae13602fc4f0f68968df934d4c /system/boot/boot.nix
parentFeat: New host (diff)
downloadnixos-config-a433b7df295f924bc3259fdb7ece389a31ae3181.tar.gz
nixos-config-a433b7df295f924bc3259fdb7ece389a31ae3181.zip
Feat: Reworked the Filesystem configuration
This reduces the unnecessary complexity of the whole
fileSystemLayouts.nix file.
Diffstat (limited to '')
-rw-r--r--system/boot/boot.nix1
1 files changed, 1 insertions, 0 deletions
diff --git a/system/boot/boot.nix b/system/boot/boot.nix
index 629e63ae..511c14c5 100644
--- a/system/boot/boot.nix
+++ b/system/boot/boot.nix
@@ -7,6 +7,7 @@
     initrd = {
       compressor = "lz4";
       compressorArgs = ["-9"];
+      kernelModules = [ "nvme" "btrfs" ];
     };
 
     kernelPackages = pkgs.linuxPackages_latest;