From a61154c0d4523267d57a5c1e2c13de49e909c39e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Llu=C3=ADs=20Batlle=20i=20Rossell?= Date: Wed, 30 Jan 2013 20:51:49 +0100 Subject: [PATCH] Adding support of the Intel 2230 wireless card to nixos It should go to the livecd, added to the all-hardware profile. Yes, the card is called 2230, the ucode called 2030: http://wireless.kernel.org/en/users/Drivers/iwlwifi --- modules/hardware/network/intel-2030.nix | 5 +++++ modules/profiles/all-hardware.nix | 1 + 2 files changed, 6 insertions(+) create mode 100644 modules/hardware/network/intel-2030.nix diff --git a/modules/hardware/network/intel-2030.nix b/modules/hardware/network/intel-2030.nix new file mode 100644 index 00000000000..303363eaab2 --- /dev/null +++ b/modules/hardware/network/intel-2030.nix @@ -0,0 +1,5 @@ +{pkgs, config, ...}: + +{ + hardware.firmware = [ pkgs.iwlwifi2030ucode ]; +} diff --git a/modules/profiles/all-hardware.nix b/modules/profiles/all-hardware.nix index b5e25fffb42..617616ee6cc 100644 --- a/modules/profiles/all-hardware.nix +++ b/modules/profiles/all-hardware.nix @@ -53,6 +53,7 @@ ../hardware/network/intel-6000.nix ../hardware/network/intel-6000g2a.nix ../hardware/network/intel-6000g2b.nix + ../hardware/network/intel-2030.nix ../hardware/network/broadcom-43xx.nix ../hardware/network/zydas-zd1211.nix ../hardware/video/radeon.nix