aboutsummaryrefslogtreecommitdiff
path: root/users/fcuny/cli/beets.nix
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2022-04-01 11:56:43 -0700
committerFranck Cuny <franck@fcuny.net>2022-04-01 11:56:43 -0700
commit5555575f63c6ffefac2654e8e5a7a66e2b2e6d08 (patch)
tree583287b5673b831f64fcdd71e6c3036b0957cefe /users/fcuny/cli/beets.nix
parentswaybar: simplify colors (diff)
downloadinfra-5555575f63c6ffefac2654e8e5a7a66e2b2e6d08.tar.gz
consolidate configuration for music curation
Diffstat (limited to 'users/fcuny/cli/beets.nix')
-rw-r--r--users/fcuny/cli/beets.nix37
1 files changed, 0 insertions, 37 deletions
diff --git a/users/fcuny/cli/beets.nix b/users/fcuny/cli/beets.nix
deleted file mode 100644
index 39802a7..0000000
--- a/users/fcuny/cli/beets.nix
+++ /dev/null
@@ -1,37 +0,0 @@
-{ config, lib, pkgs, ... }:
-
-{
- programs.beets = {
- enable = true;
- settings = {
- directory = "/data/fast/music";
- plugins =
- "fromfilename discogs duplicates fetchart embedart badfiles lastgenre scrub";
- paths = {
- default = "$albumartist/$album%aunique{}/$track $title";
- singleton = "Singles/$artist/$title";
- comp = "Compilations/$album%aunique{}/$track - $title";
- "albumtype:soundtrack" = "Soundtracks/$album ($year)/$track $title";
- };
- import = {
- copy = true;
- move = true;
- };
- va_name = "Various Artists";
- embedart = { ifempty = true; };
-
- lastgenre = {
- auto = false;
- canonical = true;
- fallback = "unknown";
- force = true;
- prefer_specific = true;
- };
-
- fetchart = {
- cautious = true;
- sources = "filesystem coverart itunes amazon lastfm wikipedia";
- };
- };
- };
-}