home-manager/gui: Add easyeffects
CI / Check, build and cache nixfiles (push) Failing after 1h52m48s
CI / Check, build and cache nixfiles (push) Failing after 1h52m48s
This commit is contained in:
@@ -1,6 +1,6 @@
|
|||||||
{ lib, pkgs', pkgs, config, ... }:
|
{ lib, pkgs', pkgs, config, ... }:
|
||||||
let
|
let
|
||||||
inherit (lib) genAttrs mkIf mkMerge mkForce mapAttrs mkOptionDefault;
|
inherit (lib) genAttrs mkIf mkMerge mkForce mapAttrs mkOptionDefault mkDefault;
|
||||||
inherit (lib.my) mkOpt' mkBoolOpt';
|
inherit (lib.my) mkOpt' mkBoolOpt';
|
||||||
inherit (lib.my.c) pubDomain;
|
inherit (lib.my.c) pubDomain;
|
||||||
|
|
||||||
@@ -413,6 +413,30 @@ in
|
|||||||
device_type = "computer";
|
device_type = "computer";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
easyeffects = {
|
||||||
|
enable = mkDefault false;
|
||||||
|
preset = mkDefault "moar-bass";
|
||||||
|
extraPresets = {
|
||||||
|
moar-bass = {
|
||||||
|
output = {
|
||||||
|
"bass_enhancer#0" = {
|
||||||
|
amount = 3;
|
||||||
|
blend = 0;
|
||||||
|
bypass = false;
|
||||||
|
floor = 20;
|
||||||
|
floor-active = false;
|
||||||
|
harmonics = 8.5;
|
||||||
|
input-gain = 0;
|
||||||
|
output-gain = 0;
|
||||||
|
scope = 100;
|
||||||
|
};
|
||||||
|
blocklist = [ ];
|
||||||
|
plugins_order = [ "bass_enhancer#0" ];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
programs = {
|
programs = {
|
||||||
|
|||||||
@@ -232,6 +232,10 @@ in
|
|||||||
|
|
||||||
services = {
|
services = {
|
||||||
blueman-applet.enable = true;
|
blueman-applet.enable = true;
|
||||||
|
easyeffects = {
|
||||||
|
enable = true;
|
||||||
|
preset = "moar-bass";
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
wayland.windowManager.sway = {
|
wayland.windowManager.sway = {
|
||||||
|
|||||||
Reference in New Issue
Block a user