summaryrefslogtreecommitdiffstats
path: root/nixos/modules/hardware/all-firmware.nix
diff options
context:
space:
mode:
authorJörg Thalheim <joerg@thalheim.io>2017-05-09 20:10:41 +0100
committerJörg Thalheim <joerg@thalheim.io>2017-05-09 20:13:15 +0100
commite69758567559e3dea4577921364328b6f98e4ed3 (patch)
tree2785fd000f2cf4af732516021e264cc28aaa4c88 /nixos/modules/hardware/all-firmware.nix
parent779ae064674aa9645bcefaacbc83f942e2ef759f (diff)
hardware.enableRedistributableFirmware: fix spelling error
Diffstat (limited to 'nixos/modules/hardware/all-firmware.nix')
-rw-r--r--nixos/modules/hardware/all-firmware.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/nixos/modules/hardware/all-firmware.nix b/nixos/modules/hardware/all-firmware.nix
index 8f26d8f57ea4..afaa65f6ce35 100644
--- a/nixos/modules/hardware/all-firmware.nix
+++ b/nixos/modules/hardware/all-firmware.nix
@@ -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; [