This commit is contained in:
Lilith 2025-08-21 23:08:07 +02:00
parent 7406d068b4
commit ec45f12c12
No known key found for this signature in database
GPG key ID: 272C807BD91F8446
16 changed files with 217 additions and 34 deletions

View file

@ -0,0 +1,13 @@
{ lib, pkgs, ... }:
let
mkHostOverride = lib.mkOverride 75;
in
{
system.stateVersion = "24.05";
nfs.host.enable = true;
hardware.graphics.extraPackages = [ pkgs.rocmPackages.clr.icd ];
environment.systemPackages = [ pkgs.rocmPackages.clr.icd ];
boot.kernelModules = [ "amdgpu" ];
}