diff options
Diffstat (limited to 'hosts/desktop')
| -rw-r--r-- | hosts/desktop/configuration.nix | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/hosts/desktop/configuration.nix b/hosts/desktop/configuration.nix index cb86a6c..dfa60c9 100644 --- a/hosts/desktop/configuration.nix +++ b/hosts/desktop/configuration.nix @@ -33,6 +33,8 @@ enable = true; }; + programs.coolercontrol.enable = true; + programs.gnupg.agent = { enable = true; enableSSHSupport = true; @@ -60,7 +62,6 @@ services.xserver.videoDrivers = [ "amdgpu" ]; hardware.sensor.iio.enable = true; services.lact.enable = true; environment.variables.AMD_VULKAN_ICD = "RADV"; -hardware.amdgpu.initrd.enable = true; nix.settings = { trusted-users = [ "root" "adam" ]; @@ -72,7 +73,11 @@ hardware.amdgpu.initrd.enable = true; graphics = { enable = true; enable32Bit = true; - extraPackages = with pkgs; [vulkan-tools amdvlk]; + }; + amdgpu = { + initrd.enable = true; + overdrive.enable = true; + opencl.enable = true; }; }; @@ -108,7 +113,7 @@ xdg.portal = { console = { keyMap = "pl"; - # font = "Lat2-Terminus16"; + font = "LatArCyrHeb-16"; }; environment.sessionVariables = { |
