43 lines
1.3 KiB
Nix
43 lines
1.3 KiB
Nix
{ lib, config, pkgs, inputs, pkgsVersion, ... }:
|
|
let cfg = config.custom.hardware.amd-gpu;
|
|
in {
|
|
options.custom.hardware.amd-gpu = {
|
|
enable = lib.mkEnableOption "Enables amd gpus";
|
|
};
|
|
|
|
config =
|
|
let
|
|
mesa-new = pkgs.mesa-git.mesa.overrideAttrs (oldAttrs: {
|
|
src = pkgs.fetchFromGitLab {
|
|
domain = "gitlab.freedesktop.org";
|
|
owner = "mesa";
|
|
repo = "mesa";
|
|
rev = "aa8fec638f5e2731e88b9463c67aac7c34bae800";
|
|
hash = "sha256-j/v5Z8EBgoOuMOXUXxqRQMqBmHMpR5I/Qz7wgcXE7Vk=";
|
|
};
|
|
});
|
|
in
|
|
lib.mkIf cfg.enable {
|
|
boot.kernelParams =
|
|
[ "amdgpu.ppfeaturemask=0xfff7ffff" "split_lock_detect=off" ];
|
|
|
|
hardware.graphics = {
|
|
enable = true;
|
|
enable32Bit = true;
|
|
package = lib.mkForce mesa-new.drivers;
|
|
extraPackages = with pkgs; [ mesa-git.amdvlk ];
|
|
};
|
|
|
|
hardware.amdgpu.initrd.enable = lib.mkDefault true;
|
|
services.xserver.videoDrivers = [ "amdgpu" ];
|
|
# controller (overclock, undervolt, fan curves)
|
|
environment.systemPackages = with pkgs; [
|
|
lact
|
|
nvtopPackages.amd
|
|
amdgpu_top
|
|
];
|
|
systemd.packages = with pkgs; [ lact ];
|
|
systemd.services.lactd.wantedBy = [ "multi-user.target" ];
|
|
};
|
|
}
|