From 4881f5f4860ffaee0b6bd55e77d7390c57da87f5 Mon Sep 17 00:00:00 2001 From: Antoine Viallon Date: Tue, 12 Mar 2024 23:38:36 +0100 Subject: [PATCH] [Security/Encryption] enable jitterentropy_rng kernel module Does the same thing as haveged did in the past, but in the kernel. I simply wonder why no one mentionned it is not enabled by default... --- security/encryption.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/security/encryption.nix b/security/encryption.nix index c62815d..e165bd9 100644 --- a/security/encryption.nix +++ b/security/encryption.nix @@ -26,5 +26,6 @@ in { boot.initrd.systemd.enable = mkOverride 10 true; boot.initrd.availableKernelModules = [ "cryptd" ]; + boot.initrd.kernelModules = [ "jitterentropy_rng" ]; }; }