logitech: Init

pull/64/head
Simon Bruder 2022-02-08 19:06:58 +01:00
parent 8d5480416c
commit 175b5e1ef1
Signed by: simon
GPG Key ID: 8D3C82F9F309F8EC
2 changed files with 9 additions and 0 deletions

View File

@ -27,6 +27,7 @@
./gui.nix
./initrd-ssh.nix
./locales.nix
./logitech.nix
./mailserver.nix
./media-proxy.nix
./mullvad

8
modules/logitech.nix Normal file
View File

@ -0,0 +1,8 @@
{ config, lib, ... }:
lib.mkIf config.sbruder.gui.enable {
hardware.logitech.wireless = {
enable = true;
enableGraphical = true;
};
}