9 lines
147 B
Nix
9 lines
147 B
Nix
|
{ config, lib, ... }:
|
||
|
|
||
|
lib.mkIf config.sbruder.gui.enable {
|
||
|
hardware.logitech.wireless = {
|
||
|
enable = true;
|
||
|
enableGraphical = true;
|
||
|
};
|
||
|
}
|