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

11 lines
250 B
Nix

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