diff options
author | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2024-08-08 10:08:58 +0200 |
---|---|---|
committer | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2024-08-08 10:08:58 +0200 |
commit | f787702935b9ee8ae050f9e34bdc3b2853485806 (patch) | |
tree | ab1b590e6a3590aefa2dee4470bd9718a02d9ba8 /modules/home/conf/beets/default.nix | |
parent | fix(home/beets): Disable the `lastgenre` plugin (diff) | |
download | nixos-config-f787702935b9ee8ae050f9e34bdc3b2853485806.tar.gz nixos-config-f787702935b9ee8ae050f9e34bdc3b2853485806.zip |
fix(home/beets): Split the replay gain post-import hook
The `&&` does not work, thus split the hook into two separate list entries.
Diffstat (limited to 'modules/home/conf/beets/default.nix')
-rw-r--r-- | modules/home/conf/beets/default.nix | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/modules/home/conf/beets/default.nix b/modules/home/conf/beets/default.nix index 5f3a141c..4348257d 100644 --- a/modules/home/conf/beets/default.nix +++ b/modules/home/conf/beets/default.nix @@ -46,7 +46,12 @@ { # Called, when `beet import` finishes event = "import"; - command = "echo 'Import finished. Starting to calculate replay gain..' && beet replaygain"; + command = "echo 'Import finished. Starting to calculate replay gain..'"; + } + { + # Called, when `beet import` finishes + event = "import"; + command = "beet replaygain"; } ]; }; |