Add missing config

This commit is contained in:
Manuel Thalmann 2024-08-08 01:51:21 +02:00
parent 2612b6b6de
commit 2ee11b7fa3
2 changed files with 7 additions and 0 deletions

View file

@ -32,6 +32,12 @@
default = false; default = false;
}; };
corsairDevice = mkOption {
type = types.bool;
description = "A value indicating whether a Corsair device is present.";
default = false;
};
elgatoWave = mkOption { elgatoWave = mkOption {
type = types.bool; type = types.bool;
description = "A value indicating whether an Elgato Wave device is present."; description = "A value indicating whether an Elgato Wave device is present.";

View file

@ -33,6 +33,7 @@
eyeX = true; eyeX = true;
amdCPU = true; amdCPU = true;
nvidiaGPU = true; nvidiaGPU = true;
corsairDevice = true;
elgatoWave = true; elgatoWave = true;
}; };
}; };