nixos-config/modules/drivers/veikk.nix

16 lines
378 B
Nix
Raw Normal View History

# Installs the VEIKK Linux driver at https://github.com/jlam55555/veikk-linux-driver.
{ config, options, lib, pkgs, ... }:
2020-10-25 15:49:14 +00:00
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 ];
};
}