diff --git a/hosts/pacifidlog/default.nix b/hosts/pacifidlog/default.nix index 2d6c3061..c07c7a9e 100644 --- a/hosts/pacifidlog/default.nix +++ b/hosts/pacifidlog/default.nix @@ -22,7 +22,10 @@ ]; boot = { - initrd.systemd.enable = true; + initrd = { + kernelModules = ["amdgpu"]; + systemd.enable = true; + }; lanzaboote = { enable = true; @@ -31,7 +34,11 @@ loader = { efi.canTouchEfiVariables = true; - systemd-boot.enable = lib.mkForce false; + + systemd-boot = { + enable = lib.mkForce false; + consoleMode = "max"; + }; }; }; diff --git a/hosts/petalburg/default.nix b/hosts/petalburg/default.nix index e4948939..c9f550ef 100644 --- a/hosts/petalburg/default.nix +++ b/hosts/petalburg/default.nix @@ -23,11 +23,7 @@ ]; boot = { - initrd = { - initrd.kernelModules = ["amdgpu"]; - systemd.enable = true; - }; - + initrd.systemd.enable = true; extraModulePackages = with config.boot.kernelPackages; [acpi_call]; lanzaboote = { @@ -37,11 +33,7 @@ loader = { efi.canTouchEfiVariables = true; - - systemd-boot = { - enable = lib.mkForce false; - consoleMode = "max"; - }; + systemd-boot.enable = lib.mkForce false; }; };