Skip to content

Commit

Permalink
nixos: fix missing keyword
Browse files Browse the repository at this point in the history
  • Loading branch information
soopyc authored Sep 24, 2024
1 parent 8204bde commit f4e03e7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/distributions/nixos/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -329,7 +329,7 @@ The declarative setup is suitable for long-term use after you have installed Nix
```nix linenums="1" hl_lines="2-11" title="configuration.nix"
{pkgs, ...}: {
hardware.firmware = [
(stdenvNoCC.mkDerivation (final: {
(pkgs.stdenvNoCC.mkDerivation (final: {
name = "brcm-firmware";
src = ./firmware/brcm;
installPhase = ''
Expand All @@ -347,7 +347,7 @@ The declarative setup is suitable for long-term use after you have installed Nix
```nix linenums="1" hl_lines="2-14" title="configuration.nix"
{pkgs, ...}: {
hardware.firmware = [
(stdenvNoCC.mkDerivation (final: {
(pkgs.stdenvNoCC.mkDerivation (final: {
name = "brcm-firmware";
src = ./firmware.tar;

Expand Down

0 comments on commit f4e03e7

Please sign in to comment.