From 91a95688284beb8e38a76fba0272b1658895cae4 Mon Sep 17 00:00:00 2001 From: Asmir A Date: Sun, 25 Aug 2024 10:56:41 +0200 Subject: [PATCH] nixy: enable systemd at initrd, remove amdgpu from initrd modules --- nixy/configuration.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/nixy/configuration.nix b/nixy/configuration.nix index ae170a2..ce55ba9 100644 --- a/nixy/configuration.nix +++ b/nixy/configuration.nix @@ -68,7 +68,8 @@ boot = { extraModulePackages = with config.boot.kernelPackages; [usbip v4l2loopback]; initrd.compressor = "zstd"; - initrd.kernelModules = ["amdgpu"]; + initrd.kernelModules = []; + initrd.systemd.enable = true; binfmt.emulatedSystems = ["wasm32-wasi" "x86_64-windows"]; kernelPackages = pkgs.linuxPackages_latest; kernelParams = ["psmouse.synaptics_intertouch=0" "mem_sleep_default=deep"];