add initial beet setup, if you can call it that
This commit is contained in:
parent
495c87a542
commit
cfeb53b1ed
2 changed files with 23 additions and 0 deletions
22
nix/home/programs/beets/default.nix
Normal file
22
nix/home/programs/beets/default.nix
Normal 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
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue