easyeffects

This commit is contained in:
Reid 2026-06-01 23:15:43 -07:00
parent 393ccdb4dd
commit 6b116a6c3d
Signed by: reidlab
GPG key ID: DAF5EAF6665839FD
4 changed files with 22 additions and 1 deletions

View file

@ -115,6 +115,7 @@
distractions.steam.enable = true;
# tools
tools.direnv.enable = true;
tools.easyeffects.enable = true;
tools.git.enable = true;
tools.gpg.enable = true;
tools.rbw.enable = true;

View file

@ -102,6 +102,7 @@
distractions.steam.enable = true;
# tools
tools.direnv.enable = true;
tools.easyeffects.enable = true;
tools.git.enable = true;
tools.gpg.enable = true;
tools.rbw.enable = true;

View file

@ -3,7 +3,6 @@
with lib;
let
cfg = config.modules.software.system.fish;
nix-colors-lib = inputs.nix-colors.lib.contrib { inherit pkgs; };
in {
options.modules.software.system.fish = {
enable = mkEnableOption "Enable fish, the friendly interpreted shell";

View file

@ -0,0 +1,20 @@
{ pkgs, config, lib, ... }:
with lib;
let
cfg = config.modules.software.tools.easyeffects;
in {
options.modules.software.tools.easyeffects = {
enable = mkEnableOption "Enable Easy Effects, audio effects for PipeWire applications";
package = mkOption {
type = types.package;
default = pkgs.easyeffects;
example = "pkgs.easyeffects";
};
};
config = mkIf cfg.enable {
hm.services.easyeffects.enable = true;
hm.services.easyeffects.package = cfg.package;
};
}