hardware.enableRedistributableFirmware: fix spelling error

This commit is contained in:
Jörg Thalheim 2017-05-09 20:10:41 +01:00
parent 779ae06467
commit e697585675
No known key found for this signature in database
GPG Key ID: CA4106B8D7CC79FA
16 changed files with 18 additions and 18 deletions

View File

@ -18,7 +18,7 @@ in {
''; '';
}; };
hardware.enableRedistributalFirmware = mkOption { hardware.enableRedistributableFirmware = mkOption {
default = false; default = false;
type = types.bool; type = types.bool;
description = '' description = ''
@ -33,7 +33,7 @@ in {
###### implementation ###### implementation
config = mkMerge [ config = mkMerge [
(mkIf (cfg.enableAllFirmware || cfg.enableRedistributalFirmware) { (mkIf (cfg.enableAllFirmware || cfg.enableRedistributableFirmware) {
hardware.firmware = with pkgs; [ hardware.firmware = with pkgs; [
firmwareLinuxNonfree firmwareLinuxNonfree
intel2200BGFirmware intel2200BGFirmware
@ -47,7 +47,7 @@ in {
message = '' message = ''
the list of hardware.enableAllFirmware contains non-redistributable licensed firmware files. the list of hardware.enableAllFirmware contains non-redistributable licensed firmware files.
This requires nixpkgs.config.allowUnfree to be true. This requires nixpkgs.config.allowUnfree to be true.
An alternative is to use the hardware.enableRedistributalFirmware option. An alternative is to use the hardware.enableRedistributableFirmware option.
''; '';
}]; }];
hardware.firmware = with pkgs; [ hardware.firmware = with pkgs; [

View File

@ -1,3 +1,3 @@
{ {
hardware.enableRedistributalFirmware = true; hardware.enableRedistributableFirmware = true;
} }

View File

@ -1,3 +1,3 @@
{ {
hardware.enableRedistributalFirmware = true; hardware.enableRedistributableFirmware = true;
} }

View File

@ -23,7 +23,7 @@
config = lib.mkIf config.networking.enableIntel2100BGFirmware { config = lib.mkIf config.networking.enableIntel2100BGFirmware {
hardware.enableRedistributalFirmware = true; hardware.enableRedistributableFirmware = true;
}; };

View File

@ -22,7 +22,7 @@
config = lib.mkIf config.networking.enableIntel3945ABGFirmware { config = lib.mkIf config.networking.enableIntel3945ABGFirmware {
hardware.enableRedistributalFirmware = true; hardware.enableRedistributableFirmware = true;
}; };

View File

@ -1,3 +1,3 @@
{ {
hardware.enableRedistributalFirmware = true; hardware.enableRedistributableFirmware = true;
} }

View File

@ -1,3 +1,3 @@
{ {
hardware.enableRedistributalFirmware = true; hardware.enableRedistributableFirmware = true;
} }

View File

@ -1,3 +1,3 @@
{ {
hardware.enableRedistributalFirmware = true; hardware.enableRedistributableFirmware = true;
} }

View File

@ -1,3 +1,3 @@
{ {
hardware.enableRedistributalFirmware = true; hardware.enableRedistributableFirmware = true;
} }

View File

@ -1,3 +1,3 @@
{ {
hardware.enableRedistributalFirmware = true; hardware.enableRedistributableFirmware = true;
} }

View File

@ -1,3 +1,3 @@
{ {
hardware.enableRedistributalFirmware = true; hardware.enableRedistributableFirmware = true;
} }

View File

@ -20,7 +20,7 @@
###### implementation ###### implementation
config = lib.mkIf config.networking.enableRalinkFirmware { config = lib.mkIf config.networking.enableRalinkFirmware {
hardware.enableRedistributalFirmware = true; hardware.enableRedistributableFirmware = true;
}; };
} }

View File

@ -20,7 +20,7 @@
###### implementation ###### implementation
config = lib.mkIf config.networking.enableRTL8192cFirmware { config = lib.mkIf config.networking.enableRTL8192cFirmware {
hardware.enableRedistributalFirmware = true; hardware.enableRedistributableFirmware = true;
}; };
} }

View File

@ -1,3 +1,3 @@
{ {
hardware.enableRedistributalFirmware = true; hardware.enableRedistributableFirmware = true;
} }

View File

@ -5,5 +5,5 @@
with lib; with lib;
{ {
hardware.enableRedistributalFirmware = true; hardware.enableRedistributableFirmware = true;
} }

View File

@ -50,7 +50,7 @@
]; ];
# Include lots of firmware. # Include lots of firmware.
hardware.enableRedistributalFirmware = true; hardware.enableRedistributableFirmware = true;
imports = imports =
[ ../hardware/network/zydas-zd1211.nix ]; [ ../hardware/network/zydas-zd1211.nix ];