nixos-config/modules/drivers/veikk.nix
2020-10-25 23:49:14 +08:00

16 lines
378 B
Nix
Executable File

# Installs the VEIKK Linux driver at https://github.com/jlam55555/veikk-linux-driver.
{ config, options, lib, pkgs, ... }:
with lib; {
options.modules.drivers.veikk = {
enable = mkOption {
type = types.bool;
default = false;
};
};
config = mkIf config.modules.drivers.veikk.enable {
boot.extraModulePackages = [ pkgs.veikk-linux-driver ];
};
}