nixpkgs/nixos/modules/hardware/wooting.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
298 B
Nix
Raw Normal View History

{
config,
lib,
pkgs,
...
}:
{
2024-11-20 17:59:50 +01:00
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 ];
};
}