This commit is contained in:
xenia 2025-06-14 20:25:28 +02:00
parent 1305b9350d
commit b4eb9f00ff

View File

@ -48,4 +48,20 @@
};
boot.supportedFilesystems."fuse.sshfs" = true;
# for blender and other hip stuff
# https://wiki.nixos.org/wiki/AMD_GPU#HIP
systemd.tmpfiles.rules =
let
rocmEnv = pkgs.symlinkJoin {
name = "rocm-combined";
paths = with pkgs.rocmPackages; [
rocblas
hipblas
clr
];
};
in [
"L+ /opt/rocm - - - - ${rocmEnv}"
];
}