moar options
This commit is contained in:
@@ -9,6 +9,7 @@
|
||||
./gnome.nix
|
||||
./ime.nix
|
||||
./lxqt.nix
|
||||
./noise-supression.nix
|
||||
./obs.nix
|
||||
./openrgb.nix
|
||||
./plasma.nix
|
||||
|
||||
17
modules/graphical/noise-supression.nix
Normal file
17
modules/graphical/noise-supression.nix
Normal file
@@ -0,0 +1,17 @@
|
||||
{config, lib, pkgs, ...}:
|
||||
with lib;
|
||||
let
|
||||
cfg = config.kop.graphical.noise-supression;
|
||||
in
|
||||
{
|
||||
options.kop.graphical.noise-supression = {
|
||||
enable = mkEnableOption "Enables noise-supression";
|
||||
};
|
||||
|
||||
config = mkIf cfg.enable {
|
||||
programs.noisetorch.enable = true;
|
||||
environment.systemPackages = [
|
||||
pkgs.easyeffects
|
||||
];
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user