@@ -51,7 +51,7 @@ You can verify that it works by running the following command:
51
51
52
52
``` sh
53
53
$ nix --version
54
- nix (Lix, like Nix) 2.93.2
54
+ nix (Lix, like Nix) 2.93.3
55
55
```
56
56
57
57
# Using the Lix NixOS module
@@ -76,7 +76,7 @@ Adding Lix to a flake-based configuration is relatively simple. First, add the L
76
76
# which is often the case. If you've named it something else,
77
77
# you'll need to change the `nixpkgs` below.
78
78
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";
80
80
inputs.nixpkgs.follows = "nixpkgs";
81
81
};
82
82
@@ -153,7 +153,7 @@ You should now be using Lix! You can verify this by asking the `nix` command to
153
153
154
154
``` sh
155
155
$ nix --version
156
- nix (Lix, like Nix) 2.93.2
156
+ nix (Lix, like Nix) 2.93.3
157
157
```
158
158
159
159
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
180
180
#
181
181
# The sha256 hashes were obtained with the following command in Lix (n.b.
182
182
# 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
184
184
#
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
186
186
# which version of Lix you'll wind up with.
187
187
(let
188
188
module = fetchTarball {
189
189
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 =";
192
192
};
193
193
lixSrc = fetchTarball {
194
194
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 =";
197
197
};
198
198
# This is the core of the code you need; it is an exercise to the
199
199
# 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
230
230
231
231
``` sh
232
232
$ nix --version
233
- nix (Lix, like Nix) 2.93.2
233
+ nix (Lix, like Nix) 2.93.3
234
234
```
235
235
236
236
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