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

15 lines
445 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.wrapperType = "wrappedDerivation";
sandbox.net = "clearnet";
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
];
};
}