mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 07:01:54 +00:00
hardware.enableRedistributableFirmware: fix spelling error
This commit is contained in:
parent
779ae06467
commit
e697585675
@ -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; [
|
||||
|
@ -1,3 +1,3 @@
|
||||
{
|
||||
hardware.enableRedistributalFirmware = true;
|
||||
hardware.enableRedistributableFirmware = true;
|
||||
}
|
||||
|
@ -1,3 +1,3 @@
|
||||
{
|
||||
hardware.enableRedistributalFirmware = true;
|
||||
hardware.enableRedistributableFirmware = true;
|
||||
}
|
||||
|
@ -23,7 +23,7 @@
|
||||
|
||||
config = lib.mkIf config.networking.enableIntel2100BGFirmware {
|
||||
|
||||
hardware.enableRedistributalFirmware = true;
|
||||
hardware.enableRedistributableFirmware = true;
|
||||
|
||||
};
|
||||
|
||||
|
@ -22,7 +22,7 @@
|
||||
|
||||
config = lib.mkIf config.networking.enableIntel3945ABGFirmware {
|
||||
|
||||
hardware.enableRedistributalFirmware = true;
|
||||
hardware.enableRedistributableFirmware = true;
|
||||
|
||||
};
|
||||
|
||||
|
@ -1,3 +1,3 @@
|
||||
{
|
||||
hardware.enableRedistributalFirmware = true;
|
||||
hardware.enableRedistributableFirmware = true;
|
||||
}
|
||||
|
@ -1,3 +1,3 @@
|
||||
{
|
||||
hardware.enableRedistributalFirmware = true;
|
||||
hardware.enableRedistributableFirmware = true;
|
||||
}
|
||||
|
@ -1,3 +1,3 @@
|
||||
{
|
||||
hardware.enableRedistributalFirmware = true;
|
||||
hardware.enableRedistributableFirmware = true;
|
||||
}
|
||||
|
@ -1,3 +1,3 @@
|
||||
{
|
||||
hardware.enableRedistributalFirmware = true;
|
||||
hardware.enableRedistributableFirmware = true;
|
||||
}
|
||||
|
@ -1,3 +1,3 @@
|
||||
{
|
||||
hardware.enableRedistributalFirmware = true;
|
||||
hardware.enableRedistributableFirmware = true;
|
||||
}
|
||||
|
@ -1,3 +1,3 @@
|
||||
{
|
||||
hardware.enableRedistributalFirmware = true;
|
||||
hardware.enableRedistributableFirmware = true;
|
||||
}
|
||||
|
@ -20,7 +20,7 @@
|
||||
###### implementation
|
||||
|
||||
config = lib.mkIf config.networking.enableRalinkFirmware {
|
||||
hardware.enableRedistributalFirmware = true;
|
||||
hardware.enableRedistributableFirmware = true;
|
||||
};
|
||||
|
||||
}
|
||||
|
@ -20,7 +20,7 @@
|
||||
###### implementation
|
||||
|
||||
config = lib.mkIf config.networking.enableRTL8192cFirmware {
|
||||
hardware.enableRedistributalFirmware = true;
|
||||
hardware.enableRedistributableFirmware = true;
|
||||
};
|
||||
|
||||
}
|
||||
|
@ -1,3 +1,3 @@
|
||||
{
|
||||
hardware.enableRedistributalFirmware = true;
|
||||
hardware.enableRedistributableFirmware = true;
|
||||
}
|
||||
|
@ -5,5 +5,5 @@
|
||||
with lib;
|
||||
|
||||
{
|
||||
hardware.enableRedistributalFirmware = true;
|
||||
hardware.enableRedistributableFirmware = true;
|
||||
}
|
||||
|
@ -50,7 +50,7 @@
|
||||
];
|
||||
|
||||
# Include lots of firmware.
|
||||
hardware.enableRedistributalFirmware = true;
|
||||
hardware.enableRedistributableFirmware = true;
|
||||
|
||||
imports =
|
||||
[ ../hardware/network/zydas-zd1211.nix ];
|
||||
|
Loading…
Reference in New Issue
Block a user