tree-wide change. seperated config from 'real' modles.
This commit is contained in:
parent
3eee4e105d
commit
a0c1ad0beb
59 changed files with 377 additions and 424 deletions
38
configs/home-manager/beets.nix
Normal file
38
configs/home-manager/beets.nix
Normal file
|
@ -0,0 +1,38 @@
|
|||
{
|
||||
config,
|
||||
pkgs,
|
||||
lib,
|
||||
...
|
||||
}: {
|
||||
programs.beets = {
|
||||
enable = true;
|
||||
settings = {
|
||||
directory = "~/Music";
|
||||
library = "~/Music/library.db";
|
||||
import = {
|
||||
move = true;
|
||||
write = true;
|
||||
};
|
||||
plugins = [
|
||||
"edit"
|
||||
"fetchart"
|
||||
"chroma"
|
||||
"thumbnails"
|
||||
"replaygain"
|
||||
"mbsync"
|
||||
"fuzzy"
|
||||
"duplicates"
|
||||
"badfiles"
|
||||
"fromfilename"
|
||||
];
|
||||
replaygain = {
|
||||
auto = false;
|
||||
backend = "ffmpeg";
|
||||
};
|
||||
asciify_paths = true;
|
||||
};
|
||||
};
|
||||
home.packages = with pkgs; [
|
||||
ffmpeg
|
||||
];
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue