config/hardware/rocm.nix

13 lines
371 B
Nix
Raw Normal View History

2023-03-09 09:28:11 +01:00
{ pkgs, ... }:
{
services.xserver.videoDrivers = [ "amdgpu" ]; # for some reason nixos-hardware uses "modesetting"
# assumes common-gpu-amd from nixos-hardware is also added
nixpkgs.config.rocmSupport = true;
systemd.tmpfiles.rules = [
"L+ /opt/rocm/hip - - - - ${pkgs.hip}"
];
environment.systemPackages = with pkgs; [
nvtop
];
}