nixos/hardware.mwProCapture: remove `with lib;`

Changed files
+2 -5
nixos
modules
hardware
video
+2 -5
nixos/modules/hardware/video/capture/mwprocapture.nix
···
{ config, lib, ... }:
-
-
with lib;
-
let
cfg = config.hardware.mwProCapture;
···
{
-
options.hardware.mwProCapture.enable = mkEnableOption "the Magewell Pro Capture family kernel module";
+
options.hardware.mwProCapture.enable = lib.mkEnableOption "the Magewell Pro Capture family kernel module";
-
config = mkIf cfg.enable {
+
config = lib.mkIf cfg.enable {
boot.kernelModules = [ "ProCapture" ];