From f40d01487b6a60e2c49724651e575c89a3c092a9 Mon Sep 17 00:00:00 2001 From: Frost-Phoenix <67cyril6767@gmail.com> Date: Sun, 5 Nov 2023 17:21:54 +0100 Subject: [PATCH] clean up --- modules/core/bootloader.nix | 1 - modules/core/hardware.nix | 4 ++-- 2 files changed, 2 insertions(+), 3 deletions(-) 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"; }