mirror of
https://github.com/oqyude/nixos.git
synced 2026-06-11 12:40:44 +03:00
17 lines
302 B
Nix
Executable File
17 lines
302 B
Nix
Executable File
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
xlib,
|
|
...
|
|
}:
|
|
{
|
|
environment.systemPackages = [
|
|
pkgs.openai-whisper
|
|
];
|
|
nixpkgs.config.rocmSupport = true;
|
|
nixpkgs.config.cudaSupport = false;
|
|
hardware.amdgpu.opencl.enable = true;
|
|
hardware.graphics.extraPackages = with pkgs.rocmPackages; [ clr clr.icd ];
|
|
}
|