From 427c2dd8ef4d1c5c2ad9118a4d8318121f3decd5 Mon Sep 17 00:00:00 2001 From: Antoine Viallon Date: Thu, 10 Aug 2023 16:41:02 +0200 Subject: [PATCH] [Security/Encryption] add cryptd to initrd --- security/encryption.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/security/encryption.nix b/security/encryption.nix index 47e5543..144ee68 100644 --- a/security/encryption.nix +++ b/security/encryption.nix @@ -16,5 +16,7 @@ in { environment.systemPackages = with pkgs; [ cfg.cryptsetup.package ]; + + boot.initrd.availableKernelModules = [ "cryptd" ]; }; }