diff options
| author | adikro <adikro@disroot.org> | 2026-01-03 23:42:31 +0100 |
|---|---|---|
| committer | adikro <adikro@disroot.org> | 2026-01-03 23:42:31 +0100 |
| commit | 2102af8ea0fe4cf31d431db160e9f4a7a6564601 (patch) | |
| tree | e885b87f6e556ff1d8c7247fbf3bfa8889d5557e /hm/soft/easyeffects.nix | |
| parent | 30271854a0f4513383a9633adba444a11bca66f4 (diff) | |
added opencl support for minecraft
Diffstat (limited to 'hm/soft/easyeffects.nix')
| -rw-r--r-- | hm/soft/easyeffects.nix | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/hm/soft/easyeffects.nix b/hm/soft/easyeffects.nix new file mode 100644 index 0000000..ab16736 --- /dev/null +++ b/hm/soft/easyeffects.nix @@ -0,0 +1,12 @@ +{ config, lib, ... }: +let + cfg = config.hm.soft.easyeffects; +in +{ + options.hm.soft.easyeffects.enable = lib.mkEnableOption "EasyEffects audio equalizer"; + config = lib.mkIf cfg.enable { + services.easyeffects = { + enable = true; + }; + }; +} |
