nixpkgs/nixos/modules/hardware/keyboard/teck.nix

17 lines
303 B
Nix
Raw Normal View History

2021-04-19 11:57:32 +00:00
{ config, lib, pkgs, ... }:
with lib;
let
cfg = config.hardware.keyboard.teck;
in
{
options.hardware.keyboard.teck = {
enable = mkEnableOption "non-root access to the firmware of TECK keyboards";
};
config = mkIf cfg.enable {
services.udev.packages = [ pkgs.teck-udev-rules ];
};
}