mirror of
https://github.com/buckley310/nixos-config.git
synced 2024-11-09 18:47:02 +00:00
14 lines
332 B
Nix
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 { })
|
|
];
|
|
};
|
|
}
|