nix-conf/system/modules/davinci.nix
2025-04-22 13:19:27 +08:00

16 lines
239 B
Nix

{ pkgs, ... }:
let
in
{
environment.systemPackages = with pkgs; [
davinci-resolve
];
hardware.graphics = {
enable = true;
extraPackages = with pkgs; [
intel-compute-runtime
rocmPackages.clr.icd
];
};
}