diff options
author | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2024-08-10 17:17:01 +0200 |
---|---|---|
committer | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2024-08-10 17:17:01 +0200 |
commit | 87312b96905373ea991bb7006a80b177516237a5 (patch) | |
tree | 013c8149df3cece019c48892647d78d97af60875 /modules/home/conf | |
parent | fix(home/pkgs): Use new mpc wrappers (diff) | |
download | nixos-config-87312b96905373ea991bb7006a80b177516237a5.tar.gz nixos-config-87312b96905373ea991bb7006a80b177516237a5.zip |
feat(home/beets): Add `duplicates` plugin
Diffstat (limited to 'modules/home/conf')
-rw-r--r-- | modules/home/conf/beets/default.nix | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/modules/home/conf/beets/default.nix b/modules/home/conf/beets/default.nix index db5138dd..08b0b34e 100644 --- a/modules/home/conf/beets/default.nix +++ b/modules/home/conf/beets/default.nix @@ -61,6 +61,7 @@ # Re-calculate the replay gain value even for files, that already have one set. overwrite = true; }; + duplicates = {}; # scrub = { # auto = true; # }; @@ -75,6 +76,9 @@ # Calculate replay gain "replaygain" + # Filter out duplicates + "duplicates" + # Generate fingerprints "chroma" |