We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents d457e12 + 5c4d192 commit d39d287Copy full SHA for d39d287
docs/tutorials/getting-started-flakes.md
@@ -97,7 +97,7 @@ Add `flake.nix`:
97
};
98
in flake // {
99
# Built by `nix build .`
100
- defaultPackage = flake.packages."hello:exe:hello";
+ packages.${system}.default = flake.packages."hello:exe:hello";
101
});
102
}
103
```
flake.nix
@@ -137,7 +137,7 @@
137
138
packages = ((self.internal.compat { inherit system; }).hix).apps;
139
140
- devShell = with self.legacyPackages.${system};
+ devShells.${system}.default = with self.legacyPackages.${system};
141
mkShell {
142
buildInputs = [
143
nixUnstable
0 commit comments