diff options
author | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2024-08-11 13:48:42 +0200 |
---|---|---|
committer | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2024-08-11 14:03:48 +0200 |
commit | 7da63fbb8163e254c3abc89e245330bc1b686833 (patch) | |
tree | eb351895d9a934ac9954014333e15401d712a07e | |
parent | fix(home/beets): Use the correct attrbute name for `beetsExtraPlugins` (diff) | |
download | nixos-config-7da63fbb8163e254c3abc89e245330bc1b686833.tar.gz nixos-config-7da63fbb8163e254c3abc89e245330bc1b686833.zip |
fix(home/beets): Also use the correct attr name for `models`
-rw-r--r-- | modules/home/conf/beets/plugins/xtractor/default.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/home/conf/beets/plugins/xtractor/default.nix b/modules/home/conf/beets/plugins/xtractor/default.nix index 5b7fb149..d4582c5f 100644 --- a/modules/home/conf/beets/plugins/xtractor/default.nix +++ b/modules/home/conf/beets/plugins/xtractor/default.nix @@ -23,7 +23,7 @@ extractor_profile = { highlevel = { svm_models = let - m = pkgs.beetsExtraPlugins.xtractor.modules; + m = pkgs.beetsExtraPlugins.xtractor.models; in [ "${m}/danceability.history" "${m}/danceability.history.param" |