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

12 lines
358 B
Nix
Raw Permalink Normal View History

2021-07-30 08:40:54 +02:00
{ lib, pkgs, ... }:
{
environment.systemPackages = [ pkgs.beets ];
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";
2021-10-24 09:48:31 +02:00
plugins = toString [ "fetchart" "lastgenre" ];
2021-07-30 08:40:54 +02:00
};
};
}