From 7ada668651732addfa9cd2ca3038c870accd8979 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cyryl=20P=C5=82otnicki?= Date: Sun, 16 Feb 2020 10:15:11 +0000 Subject: [PATCH] allow for truecrypt --- nixos/boot.nix | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/nixos/boot.nix b/nixos/boot.nix index b37a25ce..626e2385 100644 --- a/nixos/boot.nix +++ b/nixos/boot.nix @@ -1,10 +1,9 @@ { config, pkgs, ... }: { fileSystems."/".options = [ "noatime" "nodiratime" "discard" ]; + security.lockKernelModules = false; boot = { - kernelModules = [ "acpi_call" ]; - extraModulePackages = with config.boot.kernelPackages; [ acpi_call ]; kernel.sysctl = { "vm.swappiness" = 1; "max_user_watches" = 524288;