diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2021-03-26 16:14:38 +0100 |
---|---|---|
committer | Eelco Dolstra <edolstra@gmail.com> | 2021-03-26 16:14:38 +0100 |
commit | 4638bcfb2cfb74cb5029c0da0af38bb7ca4b4a6f (patch) | |
tree | 2fba934d6d7f7e1bb41a38861d35ba3887d4ca9b /src/nix/flake.md | |
parent | dc6a8f154856be4a969fc9a03ff2aa0529abbbf9 (diff) |
Fix some typos
Fixes #4671.
Diffstat (limited to 'src/nix/flake.md')
-rw-r--r-- | src/nix/flake.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nix/flake.md b/src/nix/flake.md index 440c45dd1..0035195e5 100644 --- a/src/nix/flake.md +++ b/src/nix/flake.md @@ -70,7 +70,7 @@ Here are some examples of flake references in their URL-like representation: * `/home/alice/src/patchelf`: A flake in some other directory. * `nixpkgs`: The `nixpkgs` entry in the flake registry. * `nixpkgs/a3a3dda3bacf61e8a39258a0ed9c924eeca8e293`: The `nixpkgs` - entry in the flake registry, with its Git revision overriden to a + entry in the flake registry, with its Git revision overridden to a specific value. * `github:NixOS/nixpkgs`: The `master` branch of the `NixOS/nixpkgs` repository on GitHub. @@ -377,7 +377,7 @@ outputs = { self, nixpkgs, grcov }: { }; ``` -Transitive inputs can be overriden from a `flake.nix` file. For +Transitive inputs can be overridden from a `flake.nix` file. For example, the following overrides the `nixpkgs` input of the `nixops` input: |