diff --git a/modules/core/bootloader.nix b/modules/core/bootloader.nix index 277a057..204d6c5 100644 --- a/modules/core/bootloader.nix +++ b/modules/core/bootloader.nix @@ -4,5 +4,4 @@ boot.loader.systemd-boot.enable = true; boot.loader.efi.canTouchEfiVariables = true; boot.kernelPackages = pkgs.linuxPackages_lqx; - # boot.initrd.kernelModules = [ "amdgpu" ]; } diff --git a/modules/core/hardware.nix b/modules/core/hardware.nix index d84f12b..4f62c79 100755 --- a/modules/core/hardware.nix +++ b/modules/core/hardware.nix @@ -1,10 +1,10 @@ { pkgs, ... }: { - # hardware.video.hidpi.enable = true; + hardware.opengl.enable = true; hardware.opengl.driSupport = true; hardware.opengl.driSupport32Bit = true; hardware.opengl.extraPackages = with pkgs; [ - amdvlk + ]; powerManagement.cpuFreqGovernor = "performance"; }