mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-21 15:13:55 -05:00
added logitech unifying receiver support
This commit is contained in:
parent
5102eccad9
commit
769b344655
|
@ -49,6 +49,7 @@
|
|||
./modules/podman
|
||||
./modules/steam
|
||||
./modules/via-qmk
|
||||
./modules/logitech
|
||||
|
||||
# Add managed flatpak module.
|
||||
nix-flatpak.nixosModules.nix-flatpak
|
||||
|
@ -76,6 +77,7 @@
|
|||
./modules/podman
|
||||
./modules/steam
|
||||
./modules/via-qmk
|
||||
./modules/logitech
|
||||
|
||||
# Add managed flatpak module.
|
||||
nix-flatpak.nixosModules.nix-flatpak
|
||||
|
|
7
modules/logitech/default.nix
Normal file
7
modules/logitech/default.nix
Normal file
|
@ -0,0 +1,7 @@
|
|||
{ config, pkgs, ... }:
|
||||
|
||||
{
|
||||
# Add support for logitech unifying receivers.
|
||||
hardware.logitech.wireless.enable = true;
|
||||
hardware.logitech.wireless.enableGraphical = true;
|
||||
}
|
Loading…
Reference in a new issue