diff options
author | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2024-08-08 13:36:15 +0200 |
---|---|---|
committer | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2024-08-08 13:36:15 +0200 |
commit | e0a36f605e1d1a576a3c113d3d72967d2e14ff91 (patch) | |
tree | 16296a8368d9f74c8f8e3b34a1d0cc5f9e06e0f6 /modules | |
parent | fix(home/beets): Split the replay gain post-import hook (diff) | |
download | nixos-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.
Diffstat (limited to 'modules')
-rw-r--r-- | modules/home/conf/beets/default.nix | 2 |
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; }; |