From 45bd7668d780122d52756c572565de2211923527 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=9C=BF=20corey?= Date: Sun, 23 Aug 2026 16:16:38 -0700 Subject: [PATCH] fix(glyph): ignore .m3u/.m3u8 playlist files in beets import Ripper-generated playlist files were being copied into the library alongside tracks, ending up spuriously imported as Navidrome playlists. --- hosts/glyph/home.nix | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/hosts/glyph/home.nix b/hosts/glyph/home.nix index 25b4c651..4f7ebfc1 100644 --- a/hosts/glyph/home.nix +++ b/hosts/glyph/home.nix @@ -33,6 +33,15 @@ enable = true; settings = { directory = "/mnt/media/Music"; + # Extend beets' default ignore list to skip playlist files on import + ignore = [ + ".*" + "*~" + "System Volume Information" + "lost+found" + "*.m3u" + "*.m3u8" + ]; import = { copy = true; move = false;