nixos-configs/overlays/misc/default.nix

13 lines
282 B
Nix
Raw Normal View History

final: prev: {
ctranslate2 = prev.ctranslate2.override {
withCUDA = true;
2024-09-05 09:18:23 -04:00
withCuDNN = true;
};
# FIXME: remove this if https://github.com/NixOS/nixpkgs/pull/342913 is merged
spotifyd = prev.spotifyd.override {
withMpris = false;
withKeyring = false;
};
}