easyeffects
This commit is contained in:
parent
393ccdb4dd
commit
6b116a6c3d
4 changed files with 22 additions and 1 deletions
|
|
@ -115,6 +115,7 @@
|
||||||
distractions.steam.enable = true;
|
distractions.steam.enable = true;
|
||||||
# tools
|
# tools
|
||||||
tools.direnv.enable = true;
|
tools.direnv.enable = true;
|
||||||
|
tools.easyeffects.enable = true;
|
||||||
tools.git.enable = true;
|
tools.git.enable = true;
|
||||||
tools.gpg.enable = true;
|
tools.gpg.enable = true;
|
||||||
tools.rbw.enable = true;
|
tools.rbw.enable = true;
|
||||||
|
|
|
||||||
|
|
@ -102,6 +102,7 @@
|
||||||
distractions.steam.enable = true;
|
distractions.steam.enable = true;
|
||||||
# tools
|
# tools
|
||||||
tools.direnv.enable = true;
|
tools.direnv.enable = true;
|
||||||
|
tools.easyeffects.enable = true;
|
||||||
tools.git.enable = true;
|
tools.git.enable = true;
|
||||||
tools.gpg.enable = true;
|
tools.gpg.enable = true;
|
||||||
tools.rbw.enable = true;
|
tools.rbw.enable = true;
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,6 @@
|
||||||
with lib;
|
with lib;
|
||||||
let
|
let
|
||||||
cfg = config.modules.software.system.fish;
|
cfg = config.modules.software.system.fish;
|
||||||
nix-colors-lib = inputs.nix-colors.lib.contrib { inherit pkgs; };
|
|
||||||
in {
|
in {
|
||||||
options.modules.software.system.fish = {
|
options.modules.software.system.fish = {
|
||||||
enable = mkEnableOption "Enable fish, the friendly interpreted shell";
|
enable = mkEnableOption "Enable fish, the friendly interpreted shell";
|
||||||
|
|
|
||||||
20
modules/software/tools/easyeffects.nix
Normal file
20
modules/software/tools/easyeffects.nix
Normal 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;
|
||||||
|
};
|
||||||
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue