From 8f45c86aa7647ad5491ef169cbea871301c5651f Mon Sep 17 00:00:00 2001 From: Benedikt Peetz Date: Sun, 11 Aug 2024 02:34:43 +0200 Subject: fix(home/beets): Specify replacement schema --- modules/home/conf/beets/default.nix | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'modules/home/conf/beets/default.nix') diff --git a/modules/home/conf/beets/default.nix b/modules/home/conf/beets/default.nix index 88073143..9b88db88 100644 --- a/modules/home/conf/beets/default.nix +++ b/modules/home/conf/beets/default.nix @@ -11,6 +11,7 @@ beatport.enable = true; }; }; + settings = { library = "${config.xdg.dataHome}/beets/library.db"; art_filename = "cover"; @@ -18,6 +19,11 @@ ui = { color = true; }; + + include = [ + "./replace_override.yaml" + ]; + import = { # move, instead of copying or linking the files copy = false; @@ -230,6 +236,8 @@ }; }; + xdg.configFile."beets/replace_override.yaml".source = ./replace_override.yaml; + # Use the json formatter instead of the YAML one, as the YAML formatter mangles the # longer python inline strings. # YAML is a superset of JSON. -- cgit 1.4.1