add testpc

This commit is contained in:
Kopatz
2026-02-08 13:58:30 +01:00
parent f530f81712
commit 03562e8d88
14 changed files with 236 additions and 19 deletions

View File

@@ -1,11 +1,19 @@
{ pkgs, config, ... }:
{
services.easyeffects = {
enable = true;
preset = "mic";
extraPresets = {
mic = builtins.fromJSON (builtins.readFile ./mic.json);
other_mic = builtins.fromJSON (builtins.readFile ./other_mic.json);
pkgs,
config,
osConfig,
lib,
...
}:
{
config = lib.mkIf osConfig.custom.graphical.noise-supression.enable {
services.easyeffects = {
enable = true;
preset = "mic";
extraPresets = {
mic = builtins.fromJSON (builtins.readFile ./mic.json);
other_mic = builtins.fromJSON (builtins.readFile ./other_mic.json);
};
};
};
}