about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorBenedikt Peetz <benedikt.peetz@b-peetz.de>2024-08-08 13:36:15 +0200
committerBenedikt Peetz <benedikt.peetz@b-peetz.de>2024-08-08 13:36:15 +0200
commite0a36f605e1d1a576a3c113d3d72967d2e14ff91 (patch)
tree16296a8368d9f74c8f8e3b34a1d0cc5f9e06e0f6
parentfix(home/beets): Split the replay gain post-import hook (diff)
downloadnixos-config-e0a36f605e1d1a576a3c113d3d72967d2e14ff91.tar.gz
nixos-config-e0a36f605e1d1a576a3c113d3d72967d2e14ff91.zip
fix(home/beets): Use the `beets` subdir in the music directory
This makes storing the raw data in the same directory possible.
-rw-r--r--modules/home/conf/beets/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/home/conf/beets/default.nix b/modules/home/conf/beets/default.nix
index 4348257d..d1dd52b9 100644
--- a/modules/home/conf/beets/default.nix
+++ b/modules/home/conf/beets/default.nix
@@ -13,7 +13,7 @@
     settings = {
       library = "${config.xdg.dataHome}/beets/library.db";
       art_filename = "cover";
-      directory = config.xdg.userDirs.music;
+      directory = "${config.xdg.userDirs.music}/beets";
       ui = {
         color = true;
       };