From ef48ffc9be54941174e0bdd46d5994c7e41343d5 Mon Sep 17 00:00:00 2001 From: Marko Korhonen Date: Sat, 5 Oct 2024 13:48:15 +0300 Subject: [PATCH] Remove unneeded options from Mirkwood, add amdgpu to initrd --- hosts/Mirkwood/configuration.nix | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/hosts/Mirkwood/configuration.nix b/hosts/Mirkwood/configuration.nix index 5b38c22c..1bdd71de 100644 --- a/hosts/Mirkwood/configuration.nix +++ b/hosts/Mirkwood/configuration.nix @@ -7,11 +7,5 @@ ]; networking.hostName = "Mirkwood"; - - boot = { - initrd = { - luks.devices."luks-cf2ca44e-d8d1-4ec8-a072-921f29ed693d".device = "/dev/disk/by-uuid/cf2ca44e-d8d1-4ec8-a072-921f29ed693d"; - kernelModules = [ "amdgpu" ]; - }; - }; + boot.initrd.kernelModules = [ "amdgpu" ]; }