From 81516955ec9ec13be969d1cdbb59269068e30947 Mon Sep 17 00:00:00 2001 From: Ahwx Date: Mon, 26 Jan 2026 21:01:03 +0100 Subject: [PATCH] feat: enable logitech wireless hardware support for trackball --- modules/core/hardware.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/modules/core/hardware.nix b/modules/core/hardware.nix index ca598dc..20dd4c1 100644 --- a/modules/core/hardware.nix +++ b/modules/core/hardware.nix @@ -1,7 +1,11 @@ { pkgs, ... }: -{ +{ services.smartd = { enable = true; autodetect = true; }; + hardware.logitech.wireless = { + enable = true; + enableGraphical = true; + }; }