diff options
author | Rok Garbas <rok@garbas.si> | 2022-03-24 12:28:38 +0100 |
---|---|---|
committer | Rok Garbas <rok@garbas.si> | 2022-03-24 12:28:38 +0100 |
commit | 4546a007a46fe12b77a49ae8753ab186d0b55fdd (patch) | |
tree | 8d28946fb9baee5d6094da7939eb83c714cf4ca7 /src/nix/profile.md | |
parent | 284cb0aad72e1c784535aec23f4610ffd77de63c (diff) |
Fix flake profile use of originalUrl vs. originalUri
Fixes #5872
Diffstat (limited to 'src/nix/profile.md')
-rw-r--r-- | src/nix/profile.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/nix/profile.md b/src/nix/profile.md index 0a4ff2fa9..8dade051d 100644 --- a/src/nix/profile.md +++ b/src/nix/profile.md @@ -70,7 +70,7 @@ are installed in this version of the profile. It looks like this: { "active": true, "attrPath": "legacyPackages.x86_64-linux.zoom-us", - "originalUri": "flake:nixpkgs", + "originalUrl": "flake:nixpkgs", "storePaths": [ "/nix/store/wbhg2ga8f3h87s9h5k0slxk0m81m4cxl-zoom-us-5.3.469451.0927" ], @@ -84,11 +84,11 @@ are installed in this version of the profile. It looks like this: Each object in the array `elements` denotes an installed package and has the following fields: -* `originalUri`: The [flake reference](./nix3-flake.md) specified by +* `originalUrl`: The [flake reference](./nix3-flake.md) specified by the user at the time of installation (e.g. `nixpkgs`). This is also the flake reference that will be used by `nix profile upgrade`. -* `uri`: The immutable flake reference to which `originalUri` +* `uri`: The immutable flake reference to which `originalUrl` resolved. * `attrPath`: The flake output attribute that provided this |