From 2f9293f6982ddc861ba4f12bfa39e4a4c5b5b3dc Mon Sep 17 00:00:00 2001 From: randogoth Date: Fri, 28 Aug 2026 12:04:46 +0300 Subject: [PATCH] flake: track nixos-26.05 (nixos-25.11 is EOL) nixos-25.11 reached end-of-life (frozen upstream at b6018f8), so `nix flake update` no longer pulls system package updates. Move the default nixpkgs channel to the current stable release, nixos-26.05. Co-Authored-By: Claude Opus 4.8 --- flake.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index ff9c8e2..d7c7586 100644 --- a/flake.nix +++ b/flake.nix @@ -2,7 +2,7 @@ description = "NixOS installation ISO with Lix"; inputs = { - nixpkgs.url = "github:NixOS/nixpkgs/nixos-25.11"; + nixpkgs.url = "github:NixOS/nixpkgs/nixos-26.05"; disko = { url = "github:nix-community/disko"; inputs.nixpkgs.follows = "nixpkgs";