1
0
mirror of https://github.com/kmein/niveum synced 2026-03-16 10:11:08 +01:00
Files
niveum/configs/beets.nix

15 lines
360 B
Nix
Raw Normal View History

2021-07-30 08:40:54 +02:00
{
2022-03-10 21:52:12 +01:00
lib,
pkgs,
...
}: {
environment.systemPackages = [pkgs.beets];
2021-07-30 08:40:54 +02:00
home-manager.users.me.xdg.configFile = {
"beets/config.yaml".source = (pkgs.formats.yaml {}).generate "config.yaml" {
directory = "~/cloud/syncthing/music";
library = "~/cloud/syncthing/common/music.db";
2022-03-10 21:52:12 +01:00
plugins = toString ["fetchart" "lastgenre"];
2021-07-30 08:40:54 +02:00
};
};
}