From 4abc84e1bc210ee4f0611c552d2e2db7bf194fb1 Mon Sep 17 00:00:00 2001 From: aszlig Date: Fri, 1 Apr 2022 17:12:04 +0200 Subject: machines/tishtushi: Add xxhash to available mods I created the BTRFS module with a few different options than I did initially, one of them is that I changed the checksum algorithm to XXHASH. Unfortunately, the xxhash_generic module providing the algorithm is not available during stage 1, so mounting the volume would fail. In the local configuration.nix I already added it to availableKernelModules, but when I moved the config over to Vuizvui in e04c7e04f2fe63cece7a2f2064212bc055cdd035, I forgot to add it. Signed-off-by: aszlig --- machines/aszlig/tishtushi.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/machines/aszlig/tishtushi.nix b/machines/aszlig/tishtushi.nix index 8a7977b1..ffe2c1f5 100644 --- a/machines/aszlig/tishtushi.nix +++ b/machines/aszlig/tishtushi.nix @@ -12,6 +12,7 @@ timeout = 1; }; + boot.initrd.availableKernelModules = [ "xxhash_generic" ]; boot.initrd.luks.devices = { tishtushi-swap = { device = "/dev/disk/by-uuid/db144d14-9268-4f12-a421-e9c41fc207a3"; -- cgit 1.4.1