nixos-config/modules/new-lg4ff/default.nix
2023-12-21 01:38:32 -05:00

14 lines
332 B
Nix

{ config, lib, ... }:
let
cfg = config.sconfig.new-lg4ff;
in
{
options.sconfig.new-lg4ff.enable = lib.mkEnableOption "Enable new-lg4ff";
config = lib.mkIf cfg.enable {
boot.kernelModules = [ "hid-logitech-new" ];
boot.extraModulePackages = [
(config.boot.kernelPackages.callPackage ./pkg.nix { })
];
};
}