mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-13 05:05:29 +03:00
9 lines
290 B
Nix
9 lines
290 B
Nix
{ config, lib, pkgs, ... }:
|
|
{
|
|
options.hardware.wooting.enable = lib.mkEnableOption "support for Wooting keyboards";
|
|
|
|
config = lib.mkIf config.hardware.wooting.enable {
|
|
environment.systemPackages = [ pkgs.wootility ];
|
|
services.udev.packages = [ pkgs.wooting-udev-rules ];
|
|
};
|
|
}
|