17 lines
296 B
Nix
17 lines
296 B
Nix
|
{ config
|
||
|
, pkgs
|
||
|
, inputs
|
||
|
, ...
|
||
|
}: {
|
||
|
xdg.configFile."easyeffects/output/quiet.json".source = ./default.json;
|
||
|
services.easyeffects = {
|
||
|
enable = true;
|
||
|
preset = "default";
|
||
|
package = pkgs.unstable-pkgs.easyeffects;
|
||
|
};
|
||
|
|
||
|
home.packages = with pkgs.unstable-pkgs; [
|
||
|
spotify
|
||
|
];
|
||
|
}
|