@@ -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
159159As 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
236236As 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