12 lines
262 B
Nix
12 lines
262 B
Nix
{ pkgs, config, ... }:
|
|
{
|
|
services.easyeffects = {
|
|
enable = true;
|
|
preset = "mic";
|
|
extraPresets = {
|
|
mic = builtins.fromJSON (builtins.readFile ./mic.json);
|
|
other_mic = builtins.fromJSON (builtins.readFile ./other_mic.json);
|
|
};
|
|
};
|
|
}
|