From 788b05f3b74e42294220bce3afc11f0cad69df9d Mon Sep 17 00:00:00 2001 From: Mohammad Rafiq Date: Mon, 17 Mar 2025 12:57:43 +0800 Subject: [PATCH] feat(bootloader): add dm_crypt kernel module and plymouth --- systems/nemesis.nix | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/systems/nemesis.nix b/systems/nemesis.nix index c6ec88e..36fb08e 100644 --- a/systems/nemesis.nix +++ b/systems/nemesis.nix @@ -1,4 +1,4 @@ -{ +{pkgs, ...}: { imports = [ ./hw-nemesis.nix ./modules/common.nix @@ -11,4 +11,9 @@ networking.hostName = "nemesis"; system.stateVersion = "24.11"; boot.binfmt.emulatedSystems = ["wasm32-wasi" "x86_64-windows" "aarch64-linux"]; + boot.kernelPackages = pkgs.linuxPackages_latest; + boot.kernelModules = ["dm_crypt"]; + boot.plymouth = { + enable = true; + }; }