nixos-config/modules/hardware/veikk.nix

17 lines
396 B
Nix
Raw Normal View History

# Installs the VEIKK Linux driver at https://github.com/jlam55555/veikk-linux-driver.
{ config, options, lib, pkgs, ... }:
with lib;
2020-12-29 14:32:59 +00:00
let cfg = config.modules.hardware.veikk;
in {
options.modules.hardware.veikk = {
enable = mkOption {
type = types.bool;
default = false;
};
};
2020-12-29 14:32:59 +00:00
config =
mkIf cfg.enable { boot.extraModulePackages = [ pkgs.veikk-linux-driver ]; };
}