diff options
author | Raito Bezarius <raito@lix.systems> | 2024-05-14 02:05:08 +0200 |
---|---|---|
committer | Raito Bezarius <raito@lix.systems> | 2024-06-01 20:31:24 +0200 |
commit | b8cb7abcf08be01a291c970164a3f44dfca0ddbf (patch) | |
tree | 727912b4e44d9f68d4e26e9d11b0719af4a0c554 /src/libcmd/common-eval-args.cc | |
parent | 5312e60be6aba84fab91e6d82af0b1aeccdfe981 (diff) |
chore: rebrand Nix to Lix when it makes sense
Here's my guide so far:
$ rg '((?!(recursive).*) Nix
(?!(daemon|store|expression|Rocks!|Packages|language|derivation|archive|account|user|sandbox|flake).*))'
-g '!doc/' --pcre2
All items from this query have been tackled. For the documentation side:
that's for https://git.lix.systems/lix-project/lix/issues/162.
Additionally, all remaining references to github.com/NixOS/nix which
were not relevant were also replaced.
Fixes: https://git.lix.systems/lix-project/lix/issues/148.
Fixes: https://git.lix.systems/lix-project/lix/issues/162.
Change-Id: Ib3451fae5cb8ab8cd9ac9e4e4551284ee6794545
Signed-off-by: Raito Bezarius <raito@lix.systems>
Diffstat (limited to 'src/libcmd/common-eval-args.cc')
-rw-r--r-- | src/libcmd/common-eval-args.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/libcmd/common-eval-args.cc b/src/libcmd/common-eval-args.cc index e86213020..9a7c30d57 100644 --- a/src/libcmd/common-eval-args.cc +++ b/src/libcmd/common-eval-args.cc @@ -45,7 +45,7 @@ MixEvalArgs::MixEvalArgs() -I /etc/nixos ``` - will cause Nix to look for paths relative to `/home/eelco/Dev` and + will cause Lix to look for paths relative to `/home/eelco/Dev` and `/etc/nixos`, in that order. This is equivalent to setting the `NIX_PATH` environment variable to @@ -61,7 +61,7 @@ MixEvalArgs::MixEvalArgs() -I /etc/nixos ``` - will cause Nix to search for `<nixpkgs/path>` in + will cause Lix to search for `<nixpkgs/path>` in `/home/eelco/Dev/nixpkgs-branch/path` and `/etc/nixos/nixpkgs/path`. If a path in the Nix search path starts with `http://` or `https://`, @@ -73,7 +73,7 @@ MixEvalArgs::MixEvalArgs() -I nixpkgs=https://github.com/NixOS/nixpkgs/archive/master.tar.gz ``` - tells Nix to download and use the current contents of the `master` + tells Lix to download and use the current contents of the `master` branch in the `nixpkgs` repository. The URLs of the tarballs from the official `nixos.org` channels |