1
0
mirror of https://github.com/kmein/niveum synced 2026-03-16 18:21:07 +01:00

feat: beets

This commit is contained in:
2021-07-30 08:40:54 +02:00
parent 2f75f4c3b3
commit 9bc3279f52
2 changed files with 12 additions and 0 deletions

11
configs/beets.nix Normal file
View File

@@ -0,0 +1,11 @@
{ 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";
plugins = lib.concatStringsSep " " [ "fetchart" "lastgenre" "lyrics" ];
};
};
}

View File

@@ -193,6 +193,7 @@ in {
}
./alacritty.nix
./bash.nix
./beets.nix
./bluetooth.nix
./ccc.nix
./kleiter.nix