13 lines
217 B
Nix
13 lines
217 B
Nix
{ inputs, pkgs, ... }: {
|
|
imports = [ inputs.musicutil.hmModule ];
|
|
|
|
programs.musicutil = {
|
|
enable = true;
|
|
settings = {
|
|
log_level = "debug";
|
|
cache = true;
|
|
cache_dir = "/tmp";
|
|
};
|
|
};
|
|
}
|