2014-05-05 20:58:51 +02:00
|
|
|
{pkgs, config, lib, ...}:
|
2009-09-18 22:49:12 +02:00
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
###### interface
|
|
|
|
|
|
|
|
options = {
|
2011-09-14 20:20:50 +02:00
|
|
|
|
2014-05-05 20:58:51 +02:00
|
|
|
networking.enableRalinkFirmware = lib.mkOption {
|
2009-09-18 22:49:12 +02:00
|
|
|
default = false;
|
2014-05-05 20:58:51 +02:00
|
|
|
type = lib.types.bool;
|
2009-09-18 22:49:12 +02:00
|
|
|
description = ''
|
2013-08-14 03:34:40 +02:00
|
|
|
Turn on this option if you want firmware for the RT73 NIC.
|
2009-09-18 22:49:12 +02:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
###### implementation
|
2011-09-14 20:20:50 +02:00
|
|
|
|
2014-05-05 20:58:51 +02:00
|
|
|
config = lib.mkIf config.networking.enableRalinkFirmware {
|
2013-08-14 03:27:02 +02:00
|
|
|
hardware.enableAllFirmware = true;
|
2009-09-18 22:49:12 +02:00
|
|
|
};
|
2011-09-14 20:20:50 +02:00
|
|
|
|
2009-09-18 22:49:12 +02:00
|
|
|
}
|