1

Compare commits

...

2 Commits

2 changed files with 18 additions and 17 deletions

View File

@ -50,7 +50,7 @@ in {
"edit" # edit metadata in text editor "edit" # edit metadata in text editor
"fetchart" # pickup local cover art or search online "fetchart" # pickup local cover art or search online
"fish" # beet fish generates ~/.config/fish/completions file "fish" # beet fish generates ~/.config/fish/completions file
"lyrics" # fetch song lyrics # "lyrics" # fetch song lyrics
"musicbrainz" # auto tagger data source "musicbrainz" # auto tagger data source
"replaygain" # write replaygain tags for automatic loudness adjustments "replaygain" # write replaygain tags for automatic loudness adjustments
]; ];
@ -60,10 +60,10 @@ in {
sources = "filesystem coverart itunes amazon albumart"; # sources are queried in this order sources = "filesystem coverart itunes amazon albumart"; # sources are queried in this order
}; };
lyrics = { # lyrics = {
auto = "yes"; # only embeds lyrics into metadata, needed for jellyfin but useless for rmpc # auto = "yes"; # only embeds lyrics into metadata, needed for jellyfin but useless for rmpc
synced = "yes"; # prefer synced lyrics if provided # synced = "yes"; # prefer synced lyrics if provided
}; # };
replaygain = { replaygain = {
auto = "yes"; # analyze on import automatically auto = "yes"; # analyze on import automatically

View File

@ -46,20 +46,21 @@
# SG Exos Mirror Shares # SG Exos Mirror Shares
"/media/Movie" = { # TODO: New HDDs
device = "192.168.86.20:/mnt/SG Exos Mirror 18TB/Movie"; # "/media/Movie" = {
fsType = "nfs"; # device = "192.168.86.20:/mnt/SG Exos Mirror 18TB/Movie";
options = ["defaults" "rw" "relatime" "_netdev" "bg" "soft"]; # fsType = "nfs";
}; # options = ["defaults" "rw" "relatime" "_netdev" "bg" "soft"];
# };
"/media/Show" = { # "/media/Show" = {
device = "192.168.86.20:/mnt/SG Exos Mirror 18TB/Show"; # device = "192.168.86.20:/mnt/SG Exos Mirror 18TB/Show";
fsType = "nfs"; # fsType = "nfs";
options = ["defaults" "rw" "relatime" "_netdev" "bg" "soft"]; # options = ["defaults" "rw" "relatime" "_netdev" "bg" "soft"];
}; # };
"/media/TV-Music" = { "/media/TV-Music" = {
device = "192.168.86.20:/mnt/SG Exos Mirror 18TB/Music"; # device = "192.168.86.20:/mnt/SG Exos Mirror 18TB/Music";
device = "192.168.86.20:/mnt/Music/Music";
fsType = "nfs"; fsType = "nfs";
options = ["defaults" "rw" "relatime" "_netdev" "bg" "soft"]; options = ["defaults" "rw" "relatime" "_netdev" "bg" "soft"];
}; };