Skip to content

Commit fb86f63

Browse files
author
Raito Bezarius
committed
content: update to 2.93.3-1
Contains important fixes for packaging and Darwin. Signed-off-by: Raito Bezarius <[email protected]>
1 parent 7ce15b4 commit fb86f63

File tree

2 files changed

+12
-12
lines changed

2 files changed

+12
-12
lines changed

content/add-to-config.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ You can verify that it works by running the following command:
5151

5252
```sh
5353
$ nix --version
54-
nix (Lix, like Nix) 2.93.2
54+
nix (Lix, like Nix) 2.93.3
5555
```
5656

5757
# Using the Lix NixOS module
@@ -76,7 +76,7 @@ Adding Lix to a flake-based configuration is relatively simple. First, add the L
7676
# which is often the case. If you've named it something else,
7777
# you'll need to change the `nixpkgs` below.
7878
lix-module = {
79-
url = "https://git.lix.systems/lix-project/nixos-module/archive/2.93.2-1.tar.gz";
79+
url = "https://git.lix.systems/lix-project/nixos-module/archive/2.93.3-1.tar.gz";
8080
inputs.nixpkgs.follows = "nixpkgs";
8181
};
8282
@@ -153,7 +153,7 @@ You should now be using Lix! You can verify this by asking the `nix` command to
153153

154154
```sh
155155
$ nix --version
156-
nix (Lix, like Nix) 2.93.2
156+
nix (Lix, like Nix) 2.93.3
157157
```
158158

159159
As long as you see `Lix` in the output, you're good! If you're not sure what to do now, it's a
@@ -180,20 +180,20 @@ section, and add the line provided in the configuration
180180
#
181181
# The sha256 hashes were obtained with the following command in Lix (n.b.
182182
# this relies on --unpack, which is only in Lix and CppNix > 2.18):
183-
# nix store prefetch-file --name source --unpack https://git.lix.systems/lix-project/lix/archive/2.93.2.tar.gz
183+
# nix store prefetch-file --name source --unpack https://git.lix.systems/lix-project/lix/archive/2.93.3.tar.gz
184184
#
185-
# Note that the tag (e.g. 2.93.2) in the URL here is what determines
185+
# Note that the tag (e.g. 2.93.3) in the URL here is what determines
186186
# which version of Lix you'll wind up with.
187187
(let
188188
module = fetchTarball {
189189
name = "source";
190-
url = "https://git.lix.systems/lix-project/nixos-module/archive/2.93.2-1.tar.gz";
191-
sha256 = "sha256-SXUAlxpjPRkArRMHy5+Hdi+PiC+ND9yzzIjiaHmTvQU=";
190+
url = "https://git.lix.systems/lix-project/nixos-module/archive/2.93.3-1.tar.gz";
191+
sha256 = "sha256-KYMUrTV7H/RR5/HRnjV5R3rRIuBXMemyJzTLi50NFTs=";
192192
};
193193
lixSrc = fetchTarball {
194194
name = "source";
195-
url = "https://git.lix.systems/lix-project/lix/archive/2.93.2.tar.gz";
196-
sha256 = "sha256-J4ycLoXHPsoBoQtEXFCelL4xlq5pT8U9tNWNKm43+YI=";
195+
url = "https://git.lix.systems/lix-project/lix/archive/2.93.3.tar.gz";
196+
sha256 = "sha256-Oqw04eboDM8rrUgAXiT7w5F2uGrQdt8sGX+Mk6mVXZQ=";
197197
};
198198
# This is the core of the code you need; it is an exercise to the
199199
# reader to write the sources in a nicer way, or by using npins or
@@ -230,7 +230,7 @@ You should now be using Lix! You can verify this by asking the `nix` command to
230230

231231
```sh
232232
$ nix --version
233-
nix (Lix, like Nix) 2.93.2
233+
nix (Lix, like Nix) 2.93.3
234234
```
235235

236236
As long as you see `Lix` in the output, you're good! If you're not sure what to do now, it's a

content/install.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ Thanks to Nix, we can actually ask Lix to upgrade your system directly. Run the
7878
sudo --preserve-env=PATH nix run \
7979
--experimental-features "nix-command flakes" \
8080
--extra-substituters https://cache.lix.systems --extra-trusted-public-keys "cache.lix.systems:aBnZUw8zA7H35Cz2RyKFVs3H4PlGTLawyY5KRbvJR8o=" \
81-
'git+https://git.lix.systems/lix-project/lix?ref=refs/tags/2.93.2' -- \
81+
'git+https://git.lix.systems/lix-project/lix?ref=refs/tags/2.93.3' -- \
8282
upgrade-nix \
8383
--extra-substituters https://cache.lix.systems --extra-trusted-public-keys "cache.lix.systems:aBnZUw8zA7H35Cz2RyKFVs3H4PlGTLawyY5KRbvJR8o="
8484
```
@@ -88,7 +88,7 @@ to report its version:
8888

8989
```sh
9090
$ nix --version
91-
nix (Lix, like Nix) 2.93.2
91+
nix (Lix, like Nix) 2.93.3
9292
```
9393

9494
As long as you see `Lix` in the output, you're good! If you're not sure what to do now, it's a

0 commit comments

Comments
 (0)