nix/home-mods/audio/default.nix

17 lines
296 B
Nix
Raw Normal View History

2023-11-07 23:49:32 +01:00
{ 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
];
}