diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2022-02-24 21:16:58 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-24 21:16:58 +0100 |
commit | 59683733f5e1e5acecf26bff2a7255126e04eb76 (patch) | |
tree | fa253c0a9382a3d6b61bc6397cbd08734cf475a4 /src/nix/flake.md | |
parent | cf7f98483a8b190cc17831f9d4031f895fac514f (diff) | |
parent | 1a6548ca757f81594f5b54d8dada4c5ba65821de (diff) |
Merge pull request #6089 from edolstra/dot-default
Replace defaultBla.$system with bla.$system.default
Diffstat (limited to 'src/nix/flake.md')
-rw-r--r-- | src/nix/flake.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nix/flake.md b/src/nix/flake.md index f539a7c28..d59915eeb 100644 --- a/src/nix/flake.md +++ b/src/nix/flake.md @@ -268,7 +268,7 @@ derivation): outputs = { self, nixpkgs }: { - defaultPackage.x86_64-linux = + packages.x86_64-linux.default = # Notice the reference to nixpkgs here. with import nixpkgs { system = "x86_64-linux"; }; stdenv.mkDerivation { |