From 38715744d0212b390fb2ebdc3451ca18e083e0bf Mon Sep 17 00:00:00 2001 From: Sam Willcocks Date: Fri, 29 Aug 2025 20:29:45 +0100 Subject: [PATCH] update to 25.05 --- flake.lock | 16 ++++++++-------- flake.nix | 6 +++--- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/flake.lock b/flake.lock index 1a13b1c..d9eecb5 100644 --- a/flake.lock +++ b/flake.lock @@ -48,32 +48,32 @@ ] }, "locked": { - "lastModified": 1747020534, - "narHash": "sha256-D/6rkiC6w2p+4SwRiVKrWIeYzun8FBg7NlMKMwQMxO0=", + "lastModified": 1756245065, + "narHash": "sha256-aAZNbGcWrVRZgWgkQbkabSGcDVRDMgON4BipMy69gvI=", "owner": "nix-community", "repo": "home-manager", - "rev": "b4bbdc6fde16fc2051fcde232f6e288cd22007ca", + "rev": "54b2879ce622d44415e727905925e21b8f833a98", "type": "github" }, "original": { "owner": "nix-community", - "ref": "release-24.11", + "ref": "release-25.05", "repo": "home-manager", "type": "github" } }, "nixpkgs": { "locked": { - "lastModified": 1747087760, - "narHash": "sha256-2oA55l2JGIC/9ccselcas+EXOBKSvEyk+EucFOBv2jY=", + "lastModified": 1756494058, + "narHash": "sha256-Yxg5zKIM450FAq7ihT6wkbuJ+Fl3KjbSpPjwFhSgMGc=", "owner": "nixos", "repo": "nixpkgs", - "rev": "180a802f194a0789da20964e35ba1d9afe6ca38f", + "rev": "2788026c663a210beeb81e85f93ca5e86243fb3c", "type": "github" }, "original": { "owner": "nixos", - "ref": "release-24.11", + "ref": "release-25.05", "repo": "nixpkgs", "type": "github" } diff --git a/flake.nix b/flake.nix index db848d3..b965aa0 100644 --- a/flake.nix +++ b/flake.nix @@ -2,11 +2,11 @@ description = "Samw's home environment, as managed by nix/home-manager."; inputs = { # Nixpkgs - nixpkgs = {url = "github:nixos/nixpkgs/release-24.11";}; + nixpkgs = {url = "github:nixos/nixpkgs/release-25.05";}; nixpkgs-unstable = {url = "github:nixos/nixpkgs";}; # Other modules home-manager = { - url = "github:nix-community/home-manager/release-24.11"; + url = "github:nix-community/home-manager/release-25.05"; inputs.nixpkgs.follows = "nixpkgs"; }; flake-utils.url = "github:numtide/flake-utils"; @@ -100,7 +100,7 @@ # A devshell with useful utils devShells.default = pkgs.devshell.mkShell { packages = [ - inputs.home-manager.defaultPackage.${system} + inputs.home-manager.packages.${system}.default ]; }; })));