From 9e2c54bdb2d8eaef21502ed445c5556c60279687 Mon Sep 17 00:00:00 2001 From: Jade Lovelace Date: Wed, 10 Jul 2024 22:08:22 +0200 Subject: [PATCH] Update installation instructions for 2.90.0 --- content/add-to-config.md | 20 ++++++++++---------- content/install.md | 2 +- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/content/add-to-config.md b/content/add-to-config.md index ba1de718..0cf3c9cf 100644 --- a/content/add-to-config.md +++ b/content/add-to-config.md @@ -43,7 +43,7 @@ You can verify that it works by running the following command: ```sh $ nix --version -nix (Lix, like Nix) 2.90.0-rc1 +nix (Lix, like Nix) 2.90.0 ``` # Using the Lix NixOS module @@ -68,7 +68,7 @@ Adding Lix to a flake-based configuration is relatively simple. First, add the L # which is often the case. If you've named it something else, # you'll need to change the `nixpkgs` below. lix-module = { - url = "https://git.lix.systems/lix-project/nixos-module/archive/2.90.0-rc1.tar.gz"; + url = "https://git.lix.systems/lix-project/nixos-module/archive/2.90.0.tar.gz"; inputs.nixpkgs.follows = "nixpkgs"; }; @@ -145,7 +145,7 @@ You should now be using Lix! You can verify this by asking the `nix` command to ```sh $ nix --version -nix (Lix, like Nix) 2.90.0-rc1 +nix (Lix, like Nix) 2.90.0 ``` As long as you see `Lix` in the output, you're good! If you're not sure what to do now, it's a @@ -172,20 +172,20 @@ section, and add the line provided in the configuration # # The sha256 hashes were obtained with the following command in Lix (n.b. # this relies on --unpack, which is only in Lix and CppNix > 2.18): - # nix store prefetch-file --name source --unpack https://git.lix.systems/lix-project/lix/archive/2.90.0-rc1.tar.gz + # nix store prefetch-file --name source --unpack https://git.lix.systems/lix-project/lix/archive/2.90.0.tar.gz # - # Note that the tag (e.g. v2.90) in the URL here is what determines + # Note that the tag (e.g. 2.90.0) in the URL here is what determines # which version of Lix you'll wind up with. (let module = fetchTarball { name = "source"; - url = "https://git.lix.systems/lix-project/nixos-module/archive/2.90.0-rc1.tar.gz"; - sha256 = "sha256-64lB/NO6AQ6z6EDCemPSYZWX/Qc6Rt04cPia5T5v01g="; + url = "https://git.lix.systems/lix-project/nixos-module/archive/2.90.0.tar.gz"; + sha256 = "sha256-yEO2cGNgzm9x/XxiDQI+WckSWnZX63R8aJLBRSXtYNE="; }; lixSrc = fetchTarball { name = "source"; - url = "https://git.lix.systems/lix-project/lix/archive/2.90.0-rc1.tar.gz"; - sha256 = "sha256-WY7BGnu5PnbK4O8cKKv9kvxwzZIGbIQUQLGPHFXitI0="; + url = "https://git.lix.systems/lix-project/lix/archive/2.90.0.tar.gz"; + sha256 = "sha256-f8k+BezKdJfmE+k7zgBJiohtS3VkkriycdXYsKOm3sc="; }; # This is the core of the code you need; it is an exercise to the # reader to write the sources in a nicer way, or by using npins or @@ -222,7 +222,7 @@ You should now be using Lix! You can verify this by asking the `nix` command to ```sh $ nix --version -nix (Lix, like Nix) 2.90.0-rc1-lixpre20240615-253546d +nix (Lix, like Nix) 2.90.0 ``` As long as you see `Lix` in the output, you're good! If you're not sure what to do now, it's a diff --git a/content/install.md b/content/install.md index 3e4e0357..f556c916 100644 --- a/content/install.md +++ b/content/install.md @@ -80,7 +80,7 @@ to report its version: ```sh $ nix --version -nix (Lix, like Nix) 2.90.0-rc1-lixpre20240615-253546d +nix (Lix, like Nix) 2.90.0 ``` As long as you see `Lix` in the output, you're good! If you're not sure what to do now, it's a