eb6e1310b8
svn path=/nixos/trunk/; revision=29285
27 lines
457 B
Nix
27 lines
457 B
Nix
{pkgs, config, ...}:
|
|
|
|
{
|
|
|
|
###### interface
|
|
|
|
options = {
|
|
|
|
networking.enableRTL8192cFirmware = pkgs.lib.mkOption {
|
|
default = false;
|
|
type = pkgs.lib.types.bool;
|
|
description = ''
|
|
Turn on this option if you want firmware for the RTL8192c (and related) NICs.
|
|
'';
|
|
};
|
|
|
|
};
|
|
|
|
|
|
###### implementation
|
|
|
|
config = pkgs.lib.mkIf config.networking.enableRTL8192cFirmware {
|
|
hardware.firmware = [ pkgs.rtl8192cfw ];
|
|
};
|
|
|
|
}
|