update to 25.05

This commit is contained in:
Sam W 2025-08-29 20:29:45 +01:00
parent c12f8e2d07
commit 38715744d0
2 changed files with 11 additions and 11 deletions

View File

@ -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"
}

View File

@ -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
];
};
})));