12 lines
196 B
Nix
12 lines
196 B
Nix
{ pkgs, ... }:
|
|
{
|
|
services.easyeffects = {
|
|
enable = true;
|
|
preset = "headphones";
|
|
};
|
|
|
|
home.file = {
|
|
".config/easyeffects/output/headphones.json".source = ./headphones.json;
|
|
};
|
|
}
|