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;
type = types.bool;
description = ''
@ -33,7 +33,7 @@ in {
###### implementation
config = mkMerge [
(mkIf (cfg.enableAllFirmware || cfg.enableRedistributalFirmware) {
(mkIf (cfg.enableAllFirmware || cfg.enableRedistributableFirmware) {
hardware.firmware = with pkgs; [
firmwareLinuxNonfree
intel2200BGFirmware
@ -47,7 +47,7 @@ in {
message = ''
the list of hardware.enableAllFirmware contains non-redistributable licensed firmware files.
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; [

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 {
hardware.enableRedistributalFirmware = true;
hardware.enableRedistributableFirmware = true;
};

View File

@ -22,7 +22,7 @@
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
config = lib.mkIf config.networking.enableRalinkFirmware {
hardware.enableRedistributalFirmware = true;
hardware.enableRedistributableFirmware = true;
};
}

View File

@ -20,7 +20,7 @@
###### implementation
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;
{
hardware.enableRedistributalFirmware = true;
hardware.enableRedistributableFirmware = true;
}

View File

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