nix-files/hosts/common/programs/spot.nix

18 lines
520 B
Nix
Raw Normal View History

2023-11-10 19:28:16 +00:00
{ ... }:
{
sane.programs.spot = {
2024-01-24 05:47:04 +00:00
sandbox.method = "bwrap";
sandbox.net = "clearnet";
sandbox.whitelistAudio = true;
sandbox.whitelistDbus = [ "user" ]; # mpris
sandbox.whitelistWayland = true;
2023-11-10 19:28:16 +00:00
secrets.".cache/spot/librespot/credentials/credentials.json" = ../../../secrets/common/spot_credentials.json.bin;
persist.byStore.plaintext = [
".cache/spot/img" # album art
".cache/spot/librespot/audio" # audio/track cache
".cache/spot/net" # album metadata
];
};
}