diff --git a/machines/Segotep-desktop-tower-configuration.nix b/machines/Segotep-desktop-tower-configuration.nix index d37678a..f012200 100644 --- a/machines/Segotep-desktop-tower-configuration.nix +++ b/machines/Segotep-desktop-tower-configuration.nix @@ -40,7 +40,8 @@ # Enable the X11 windowing system. services.xserver.enable = true; - + services.xserver.videoDrivers = [ "amdgpu" ]; + # Enable the KDE Plasma Desktop Environment. services.xserver.displayManager.sddm.enable = true; services.xserver.desktopManager.plasma5.enable = true; diff --git a/machines/Segotep-desktop-tower-hardware-configuration.nix b/machines/Segotep-desktop-tower-hardware-configuration.nix index 7915bec..8c51513 100644 --- a/machines/Segotep-desktop-tower-hardware-configuration.nix +++ b/machines/Segotep-desktop-tower-hardware-configuration.nix @@ -9,7 +9,7 @@ ]; boot.initrd.availableKernelModules = [ "xhci_pci" "ahci" "usbhid" "uas" "sd_mod" ]; - boot.initrd.kernelModules = [ ]; + boot.initrd.kernelModules = [ "amdgpu" ]; boot.kernelModules = [ "kvm-intel" ]; boot.extraModulePackages = [ ];