Skip to content

Commit bb5e41b

Browse files
authoredOct 14, 2024··
fix: example flake syntax error (#959)
1 parent 318249d commit bb5e41b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed
 

‎docs/docs/02-quick-start/01-installation.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -61,23 +61,23 @@ This flake exposes an overlay, so you can add it to your own Flake and/or NixOS
6161
});
6262
templ = system: inputs.templ.packages.${system}.templ;
6363
in {
64-
packages = forAllSystems ({ pkgs, system }): {
64+
packages = forAllSystems ({ pkgs, system }: {
6565
myNewPackage = pkgs.buildGoModule {
6666
...
6767
preBuild = ''
6868
${templ system}/bin/templ generate
6969
'';
7070
};
71-
};
71+
});
7272
73-
devShell = forAllSystems ({ pkgs, system }):
73+
devShell = forAllSystems ({ pkgs, system }:
7474
pkgs.mkShell {
7575
buildInputs = with pkgs; [
7676
go
7777
(templ system)
7878
];
7979
};
80-
};
80+
});
8181
}
8282
```
8383

0 commit comments

Comments
 (0)
Please sign in to comment.