about summary refs log tree commit diff stats
path: root/modules/home/conf
diff options
context:
space:
mode:
Diffstat (limited to 'modules/home/conf')
-rw-r--r--modules/home/conf/beets/default.nix17
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.