From 4982dca516fce738ddcddf258e79fcf528909f82 Mon Sep 17 00:00:00 2001 From: Jade Lovelace Date: Mon, 12 Aug 2024 18:15:34 -0700 Subject: [PATCH] Update versioned stuff to 2.91.0 --- content/add-to-config.md | 20 ++++++++++---------- content/install.md | 4 ++-- 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/content/add-to-config.md b/content/add-to-config.md index a768826f..463c4e2b 100644 --- a/content/add-to-config.md +++ b/content/add-to-config.md @@ -51,7 +51,7 @@ You can verify that it works by running the following command: ```sh $ nix --version -nix (Lix, like Nix) 2.90.0 +nix (Lix, like Nix) 2.91.0 ``` # Using the Lix NixOS module @@ -76,7 +76,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.tar.gz"; + url = "https://git.lix.systems/lix-project/nixos-module/archive/2.91.0.tar.gz"; inputs.nixpkgs.follows = "nixpkgs"; }; @@ -153,7 +153,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 +nix (Lix, like Nix) 2.91.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 @@ -180,20 +180,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.tar.gz + # nix store prefetch-file --name source --unpack https://git.lix.systems/lix-project/lix/archive/2.91.0.tar.gz # - # Note that the tag (e.g. 2.90.0) in the URL here is what determines + # Note that the tag (e.g. 2.91.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.tar.gz"; - sha256 = "sha256-yEO2cGNgzm9x/XxiDQI+WckSWnZX63R8aJLBRSXtYNE="; + url = "https://git.lix.systems/lix-project/nixos-module/archive/2.91.0.tar.gz"; + sha256 = "sha256-zNW/rqNJwhq2lYmQf19wJerRuNimjhxHKmzrWWFJYts="; }; lixSrc = fetchTarball { name = "source"; - url = "https://git.lix.systems/lix-project/lix/archive/2.90.0.tar.gz"; - sha256 = "sha256-f8k+BezKdJfmE+k7zgBJiohtS3VkkriycdXYsKOm3sc="; + url = "https://git.lix.systems/lix-project/lix/archive/2.91.0.tar.gz"; + sha256 = "sha256-Rosl9iA9MybF5Bud4BTAQ9adbY81aGmPfV8dDBGl34s="; }; # 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 @@ -230,7 +230,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 +nix (Lix, like Nix) 2.91.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 3b1b49f4..e811faf0 100644 --- a/content/install.md +++ b/content/install.md @@ -78,7 +78,7 @@ Thanks to Nix, we can actually ask Lix to upgrade your system directly. Run the sudo --preserve-env=PATH nix run \ --experimental-features "nix-command flakes" \ --extra-substituters https://cache.lix.systems --extra-trusted-public-keys "cache.lix.systems:aBnZUw8zA7H35Cz2RyKFVs3H4PlGTLawyY5KRbvJR8o=" \ - 'git+https://git.lix.systems/lix-project/lix?ref=refs/tags/2.90.0' -- \ + 'git+https://git.lix.systems/lix-project/lix?ref=refs/tags/2.91.0' -- \ upgrade-nix \ --extra-substituters https://cache.lix.systems --extra-trusted-public-keys "cache.lix.systems:aBnZUw8zA7H35Cz2RyKFVs3H4PlGTLawyY5KRbvJR8o=" ``` @@ -88,7 +88,7 @@ to report its version: ```sh $ nix --version -nix (Lix, like Nix) 2.90.0 +nix (Lix, like Nix) 2.91.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