feat(bootloader): add dm_crypt kernel module and plymouth

This commit is contained in:
Mohammad Rafiq 2025-03-17 12:57:43 +08:00
parent 289d8fd798
commit 788b05f3b7

View file

@ -1,4 +1,4 @@
{ {pkgs, ...}: {
imports = [ imports = [
./hw-nemesis.nix ./hw-nemesis.nix
./modules/common.nix ./modules/common.nix
@ -11,4 +11,9 @@
networking.hostName = "nemesis"; networking.hostName = "nemesis";
system.stateVersion = "24.11"; system.stateVersion = "24.11";
boot.binfmt.emulatedSystems = ["wasm32-wasi" "x86_64-windows" "aarch64-linux"]; boot.binfmt.emulatedSystems = ["wasm32-wasi" "x86_64-windows" "aarch64-linux"];
boot.kernelPackages = pkgs.linuxPackages_latest;
boot.kernelModules = ["dm_crypt"];
boot.plymouth = {
enable = true;
};
} }