aboutsummaryrefslogtreecommitdiffstats
path: root/modules/home.legacy/conf/beets (unfollow)
Commit message (Collapse)Author
2026-05-29treewide: Remove unneeded dependenciesBenedikt Peetz
This shaves off around 1.2 GB from the system closure.
2026-05-28treewide: FormatBenedikt Peetz
2026-02-19modules/legacy/beets/plugins/inline: Don't fail on empty `albumartists`Benedikt Peetz
2026-01-27modules/legacy/beets: Remove pointless newline in inline snippetBenedikt Peetz
2026-01-27modules/legacy/beets: Also warn about "live" in the title of tracksBenedikt Peetz
2026-01-27modules/legacy/beets: Use the yaml formatter againBenedikt Peetz
I don't see a reason to override this, considering, that the reason specified in the comment is obsolete.
2026-01-26modules/legacy/beets: Activate the musicbrainz auto-taggerBenedikt Peetz
It has recently been dropped from it's default-enable state.
2026-01-25modules/{mpdpopm,legacy/beets}: Move the mpd stat tracking to mpdpopmBenedikt Peetz
It is just easier to use the hand-written rust version, than to try to do this via the beets plugin.
2025-07-29modules/legacy/beets: Use correct escape sequence for `\`Benedikt Peetz
The `\` is parsed once from yaml to python and then again, when it is inserted into the replace regex. As such we need two levels of escape.
2025-07-29modules/legacy/beets: Use primary artist for path namesBenedikt Peetz
This avoids having multiple directories for the same artist: ``` Artist1 Artist1 & SomeOtherArtist Artist1 feat. ThirdArtist (etc.) ```
2025-06-06modules/legacy/beets: Use a better path configBenedikt Peetz
I don't really care about genres or the various albumtypes.
2025-06-06modules/legacy/beets: Move the `replace_override` file in the nix fileBenedikt Peetz
I have no idea, why this is a separate file. This change also removes some windows specific replace sequences.
2025-06-06modules/legacy/beets: Remove unused pluginsBenedikt Peetz
I have not known that these plugins were configured, until I looked at the nix source again. As such, enabling theme is useless.
2025-04-27treewide: Add nice GPL-3.0-or-later license headerBenedikt Peetz
This change also ensures that this repo is reuse-3.0 compliant.
2025-03-29fix(modules/legacy/conf/beets): Disable the xtractor pluginBenedikt Peetz
This plugin never worked (because of some issue with gaia), but now it also stopped to build.
2024-11-16refactor(pkgs/mpc): Rename to `mpp`Benedikt Peetz
Nixpkgs has renamed their `mpc-cli` package to just `mpc`, turning this `mpc` package into an override for the official nixpkgs one. I think being explicit about the fact, that `mpc` is wrapped is the best solution here.
2024-10-18refactor(modules): Move all system modules to `by-name`Benedikt Peetz
From now on all modules should be added to the new `by-name` directory. This should help remove the (superficial and utterly useless) distinction between `home-manager` and `NixOS` modules.