summary refs log tree commit diff
path: root/nixos/modules/hardware/network/b43.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixos/modules/hardware/network/b43.nix')
-rw-r--r--nixos/modules/hardware/network/b43.nix30
1 files changed, 0 insertions, 30 deletions
diff --git a/nixos/modules/hardware/network/b43.nix b/nixos/modules/hardware/network/b43.nix
deleted file mode 100644
index eb03bf223cc..00000000000
--- a/nixos/modules/hardware/network/b43.nix
+++ /dev/null
@@ -1,30 +0,0 @@
-{ config, lib, pkgs, ... }:
-
-with lib;
-
-let kernelVersion = config.boot.kernelPackages.kernel.version; in
-
-{
-
-  ###### interface
-
-  options = {
-
-    networking.enableB43Firmware = mkOption {
-      default = false;
-      type = types.bool;
-      description = ''
-        Turn on this option if you want firmware for the NICs supported by the b43 module.
-      '';
-    };
-
-  };
-
-
-  ###### implementation
-
-  config = mkIf config.networking.enableB43Firmware {
-    hardware.firmware = [ pkgs.b43Firmware_5_1_138 ];
-  };
-
-}