add initial beet setup, if you can call it that

This commit is contained in:
Haak Saxberg 2023-04-15 19:36:56 -07:00
parent 495c87a542
commit cfeb53b1ed
2 changed files with 23 additions and 0 deletions

View file

@ -79,6 +79,7 @@ in
imports = [ imports = [
../system/svalbard/configuration.nix ../system/svalbard/configuration.nix
../home/programs/flood ../home/programs/flood
../home/programs/beets
]; ];
services.nfs.server.enable = true; services.nfs.server.enable = true;

View file

@ -0,0 +1,22 @@
{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [ beets ];
# If using home-manager, we could the beets settings in a more in-nix way. As
# it is, here's the YAML that's currently on the NAS. If being serious, we
# would want to fill this in with interpolated values to be machine-agnostic
#
# plugins: spotify convert missing
# directory: /storage/Music
#
# convert:
# auto: no
# dest: /storage/Music
#
# import:
# resume: yes
# copy: yes
# write: yes
# incremental: yes
# incremental_skip_later: no
}