From 18f037aa575fb61016223b237d919c1ebfc05a81 Mon Sep 17 00:00:00 2001 From: Matt Sturgeon Date: Sun, 25 May 2025 05:07:27 +0100 Subject: [PATCH] flake: switch to 25.05 --- flake.lock | 8 ++++---- flake.nix | 2 +- flake/dev/flake.lock | 22 ++++++++++++---------- flake/dev/flake.nix | 6 +++--- 4 files changed, 20 insertions(+), 18 deletions(-) diff --git a/flake.lock b/flake.lock index 2a2fb496..f1a209ae 100644 --- a/flake.lock +++ b/flake.lock @@ -66,16 +66,16 @@ }, "nixpkgs": { "locked": { - "lastModified": 1747958103, - "narHash": "sha256-qmmFCrfBwSHoWw7cVK4Aj+fns+c54EBP8cGqp/yK410=", + "lastModified": 1747953325, + "narHash": "sha256-y2ZtlIlNTuVJUZCqzZAhIw5rrKP4DOSklev6c8PyCkQ=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "fe51d34885f7b5e3e7b59572796e1bcb427eccb1", + "rev": "55d1f923c480dadce40f5231feb472e81b0bab48", "type": "github" }, "original": { "owner": "NixOS", - "ref": "nixpkgs-unstable", + "ref": "nixos-25.05", "repo": "nixpkgs", "type": "github" } diff --git a/flake.nix b/flake.nix index 4ecd57b7..f4833a37 100644 --- a/flake.nix +++ b/flake.nix @@ -2,7 +2,7 @@ description = "A neovim configuration system for NixOS"; inputs = { - nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable"; + nixpkgs.url = "github:NixOS/nixpkgs/nixos-25.05"; systems.url = "github:nix-systems/default"; diff --git a/flake/dev/flake.lock b/flake/dev/flake.lock index 8131ffd6..cf78d9b6 100644 --- a/flake/dev/flake.lock +++ b/flake/dev/flake.lock @@ -2,16 +2,16 @@ "nodes": { "dev-nixpkgs": { "locked": { - "lastModified": 1747958103, - "narHash": "sha256-qmmFCrfBwSHoWw7cVK4Aj+fns+c54EBP8cGqp/yK410=", + "lastModified": 1747953325, + "narHash": "sha256-y2ZtlIlNTuVJUZCqzZAhIw5rrKP4DOSklev6c8PyCkQ=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "fe51d34885f7b5e3e7b59572796e1bcb427eccb1", + "rev": "55d1f923c480dadce40f5231feb472e81b0bab48", "type": "github" }, "original": { "owner": "NixOS", - "ref": "nixpkgs-unstable", + "ref": "nixos-25.05", "repo": "nixpkgs", "type": "github" } @@ -102,15 +102,16 @@ ] }, "locked": { - "lastModified": 1747978958, - "narHash": "sha256-pQQnbxWpY3IiZqgelXHIe/OAE/Yv4NSQq7fch7M6nXQ=", + "lastModified": 1747556831, + "narHash": "sha256-Qb84nbYFFk0DzFeqVoHltS2RodAYY5/HZQKE8WnBDsc=", "owner": "nix-community", "repo": "home-manager", - "rev": "7419250703fd5eb50e99bdfb07a86671939103ea", + "rev": "d0bbd221482c2713cccb80220f3c9d16a6e20a33", "type": "github" }, "original": { "owner": "nix-community", + "ref": "release-25.05", "repo": "home-manager", "type": "github" } @@ -122,15 +123,16 @@ ] }, "locked": { - "lastModified": 1748065210, - "narHash": "sha256-dFqlLNW6UW19m0vg5FHWLH2G2LGkqYyPs/4YqfoZMoM=", + "lastModified": 1748044287, + "narHash": "sha256-9bJzyUX5+HXYmI60WMGYXXDdhGbSh1Le6yBM4og3K7E=", "owner": "lnl7", "repo": "nix-darwin", - "rev": "acd6aa5a9065c6695212be313e06f08f7184cb25", + "rev": "2456ff5c95edfc3b197cb012b947012faed77591", "type": "github" }, "original": { "owner": "lnl7", + "ref": "nix-darwin-25.05", "repo": "nix-darwin", "type": "github" } diff --git a/flake/dev/flake.nix b/flake/dev/flake.nix index ba96bbc6..5b6fd43e 100644 --- a/flake/dev/flake.nix +++ b/flake/dev/flake.nix @@ -5,7 +5,7 @@ # NOTE: Use a different name to the root flake's inputs.nixpkgs to avoid shadowing it. # NOTE: The only reason we specify a nixpkgs input at all here, is so the other inputs can follow it. # TODO: Once nix 2.26 is more prevalent, follow the root flake's inputs using a "path:../.." input. - dev-nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable"; + dev-nixpkgs.url = "github:NixOS/nixpkgs/nixos-25.05"; # flake-compat is used by the root `default.nix` to allow non-flake users to import nixvim flake-compat.url = "https://flakehub.com/f/edolstra/flake-compat/1.tar.gz"; @@ -23,12 +23,12 @@ }; home-manager = { - url = "github:nix-community/home-manager"; + url = "github:nix-community/home-manager/release-25.05"; inputs.nixpkgs.follows = "dev-nixpkgs"; }; nix-darwin = { - url = "github:lnl7/nix-darwin"; + url = "github:lnl7/nix-darwin/nix-darwin-25.05"; inputs.nixpkgs.follows = "dev-nixpkgs"; };