grafana-alloy: don't build the frontend twice
[NixPkgs.git] / nixos / modules / hardware / network / intel-2200bg.nix
blob17b973474c93bc6d794ece6eb792957f4ee248df
1 { config, pkgs, lib, ... }:
5   ###### interface
7   options = {
9     networking.enableIntel2200BGFirmware = lib.mkOption {
10       default = false;
11       type = lib.types.bool;
12       description = ''
13         Turn on this option if you want firmware for the Intel
14         PRO/Wireless 2200BG to be loaded automatically.  This is
15         required if you want to use this device.
16       '';
17     };
19   };
22   ###### implementation
24   config = lib.mkIf config.networking.enableIntel2200BGFirmware {
26     hardware.firmware = [ pkgs.intel2200BGFirmware ];
28   };