AMD GPU: Difference between revisions

Some redundancies were removed, like unnecessary configuration recommendations. Also, many of the sections in this page should be ignored unless you specifically know you need them. This was made clearer.
added gui tools section. added lact application to the list with the required config.
Line 121: Line 121:


More information can be found here: https://nixos.org/manual/nixos/unstable/index.html#sec-gpu-accel-vulkan
More information can be found here: https://nixos.org/manual/nixos/unstable/index.html#sec-gpu-accel-vulkan
== GUI tools ==
==== LACT - Linux AMDGPU Controller ====
This application allows you to control your AMD GPU on a Linux system.
In order to enable the daemon you need to add the package to systemd.packages and enable its service:<syntaxhighlight lang="nix">
  environment.systemPackages = with pkgs; [                                                                                                                                                                             
    lact                                                                                                                                                                                                                                                                                         
  ];                                                                                                                                                                                                                                                                                                                                               
  systemd.packages = with pkgs; [ lact ];                                                                                                                                                   
  systemd.services.lact.enable = true;
</syntaxhighlight>
[[Category:Video]]
[[Category:Video]]