From 99ccd9b481f6b25b501c0cdb2e441ed0de834e1e Mon Sep 17 00:00:00 2001 From: Manuel Thalmann Date: Thu, 8 Aug 2024 01:51:21 +0200 Subject: [PATCH] Add missing config --- lib/modules/hardware.nix | 6 ++++++ profiles/DerGeret/config.nix | 1 + 2 files changed, 7 insertions(+) diff --git a/lib/modules/hardware.nix b/lib/modules/hardware.nix index b7a5e40a..8dd7f417 100644 --- a/lib/modules/hardware.nix +++ b/lib/modules/hardware.nix @@ -32,6 +32,12 @@ default = false; }; + corsairDevice = mkOption { + type = types.bool; + description = "A value indicating whether a Corsair device is present."; + default = false; + }; + elgatoWave = mkOption { type = types.bool; description = "A value indicating whether an Elgato Wave device is present."; diff --git a/profiles/DerGeret/config.nix b/profiles/DerGeret/config.nix index 396f8863..a6beaf07 100644 --- a/profiles/DerGeret/config.nix +++ b/profiles/DerGeret/config.nix @@ -33,6 +33,7 @@ eyeX = true; amdCPU = true; nvidiaGPU = true; + corsairDevice = true; elgatoWave = true; }; };