nix-files/hosts/common/programs/spot.nix
2024-01-24 05:47:04 +00:00

13 lines
368 B
Nix

{ ... }:
{
sane.programs.spot = {
sandbox.method = "bwrap";
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
];
};
}