nixos-config/modules/home/services/easyeffects/default.nix

13 lines
270 B
Nix

{ config, lib, ... }:
{
config = lib.mkIf config.home.desktop.enable {
services.easyeffects = {
enable = true;
preset = "headphones";
};
home.file = {
".config/easyeffects/output/headphones.json".source = ./headphones.json;
};
};
}