We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 638ed96 commit 3c9aceaCopy full SHA for 3c9acea
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