nixos-configs/overlays/misc/default.nix
matt1432 292b1ef0fa
All checks were successful
Discord / discord commits (push) Has been skipped
feat(spotifyd): get credentials from librespot-auth
2024-09-18 20:19:44 -04:00

12 lines
282 B
Nix

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