nixos-config/modules/home/services/easyeffects/default.nix
2024-12-25 02:15:04 -05:00

11 lines
196 B
Nix

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