12 lines
280 B
Nix
12 lines
280 B
Nix
{ pkgs, ... }: {
|
|
programs.ncspot = {
|
|
enable = true;
|
|
package = pkgs.ncspot.overrideAttrs (o: {
|
|
buildFeatures = o.buildFeatures ++ [ "cover" "mpris" "notify" "share_clipboard" ];
|
|
});
|
|
settings = {
|
|
use_nerdfont = true;
|
|
notify = true;
|
|
};
|
|
};
|
|
}
|