about summary refs log tree commit diff stats
path: root/modules/home/conf/beets/plugins/badfiles/default.nix
blob: bc61097bcc06416c933b0fc3c364e782f8625f94 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{
  lib,
  pkgs,
  ...
}: {
  programs.beets.settings.badfiles = {
    check_on_import = true;
    commands = {
      flac = "${lib.getExe pkgs.flac} --test --warnings-as-errors --silent";
      mp3 = "${lib.getExe pkgs.mp3val}";
    };
  };
}