chore: follow rolling NixOS and Home Manager inputs

This commit is contained in:
OpenAI Coding Assistant
2026-09-06 12:45:28 -05:00
parent 83c29a083b
commit 221e0b33cc
5 changed files with 20 additions and 19 deletions
+4 -4
View File
@@ -2,15 +2,15 @@
description = "Development host";
inputs = {
# Release branches may advance; flake.lock records every exact snapshot.
nixpkgs.url = "github:NixOS/nixpkgs/nixos-26.05";
# Rolling, latest-tested NixOS; flake.lock records the resolved snapshot.
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
home-manager = {
url = "github:nix-community/home-manager/release-26.05";
url = "github:nix-community/home-manager/master";
inputs.nixpkgs.follows = "nixpkgs";
};
# Fast-moving developer tools can lag behind stable release branches.
# Fast-moving developer tools can advance ahead of the tested channel.
# flake.lock still records the exact resolved snapshot.
nixpkgs-latest.url = "github:NixOS/nixpkgs/master";