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

11 lines
250 B
Nix
Raw Normal View History

{ config, lib, ... }:
2024-10-09 03:36:08 -04:00
{
config = lib.mkIf config.home.desktop.enable {
services.easyeffects = {
enable = true;
preset = "headphones";
};
xdg.configFile."easyeffects/output/headphones.json".source = ./headphones.json;
};
}