diff options
author | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2024-08-09 22:22:15 +0200 |
---|---|---|
committer | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2024-08-09 22:22:15 +0200 |
commit | f0830f8e4dfd4d0ead577a3470ad92fd82232586 (patch) | |
tree | b6ca468b8f3fc9836ba8a1b4789cbf2f80eab608 /modules | |
parent | feat(home/mpd): Enable `replaygain` detection (diff) | |
download | nixos-config-f0830f8e4dfd4d0ead577a3470ad92fd82232586.tar.gz nixos-config-f0830f8e4dfd4d0ead577a3470ad92fd82232586.zip |
fix(home/beets): Also use subdirs for the Soundtrack genres
Diffstat (limited to 'modules')
-rw-r--r-- | modules/home/conf/beets/default.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/home/conf/beets/default.nix b/modules/home/conf/beets/default.nix index 4ed6db6c..9babf9a6 100644 --- a/modules/home/conf/beets/default.nix +++ b/modules/home/conf/beets/default.nix @@ -35,9 +35,9 @@ paths = { default = "$genre/$albumartist/$album/$track $title"; - comp = "$genre/$album/$track $title"; singleton = "$genre/$artist/$title"; - "albumtype:soundtrack" = "Soundtracks ($genre)/$album/$track $title"; + comp = "$genre/$album/$track $title"; + "albumtype:soundtrack" = "Soundtracks/$genre/$album/$track $title"; }; # Plugin config |