diff options
Diffstat (limited to 'modules/home/conf/beets')
-rw-r--r-- | modules/home/conf/beets/default.nix | 17 |
1 files changed, 2 insertions, 15 deletions
diff --git a/modules/home/conf/beets/default.nix b/modules/home/conf/beets/default.nix index 9babf9a6..db5138dd 100644 --- a/modules/home/conf/beets/default.nix +++ b/modules/home/conf/beets/default.nix @@ -52,23 +52,10 @@ force = true; }; hook = { - hooks = [ - { - # Called, when `beet import` finishes - event = "import"; - command = "echo 'Import finished. Starting to calculate replay gain..'"; - } - { - # Called, when `beet import` finishes - event = "import"; - command = "beet replaygain"; - } - ]; + hooks = []; }; replaygain = { - # Can't run in parallel in the import because of writing issues, thus we run it - # after the import finishes (see the `hooks` config) - auto = false; + auto = true; backend = "ffmpeg"; # Re-calculate the replay gain value even for files, that already have one set. |