2014-05-05 11:58:51 -07:00
|
|
|
{pkgs, config, lib, ...}:
|
2011-07-23 16:01:39 -07:00
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
###### interface
|
|
|
|
|
|
|
|
options = {
|
2011-09-14 11:20:50 -07:00
|
|
|
|
2014-05-05 11:58:51 -07:00
|
|
|
networking.enableRTL8192cFirmware = lib.mkOption {
|
2011-07-23 16:01:39 -07:00
|
|
|
default = false;
|
2014-05-05 11:58:51 -07:00
|
|
|
type = lib.types.bool;
|
2011-07-23 16:01:39 -07:00
|
|
|
description = ''
|
2011-07-24 17:36:41 -07:00
|
|
|
Turn on this option if you want firmware for the RTL8192c (and related) NICs.
|
2011-07-23 16:01:39 -07:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
###### implementation
|
2011-09-14 11:20:50 -07:00
|
|
|
|
2014-05-05 11:58:51 -07:00
|
|
|
config = lib.mkIf config.networking.enableRTL8192cFirmware {
|
2013-08-13 18:27:02 -07:00
|
|
|
hardware.enableAllFirmware = true;
|
2011-07-23 16:01:39 -07:00
|
|
|
};
|
2011-09-14 11:20:50 -07:00
|
|
|
|
2011-07-23 16:01:39 -07:00
|
|
|
}
|