From af462eadc9232f18eeb8c50ff22fb190e95fb05b Mon Sep 17 00:00:00 2001 From: Shun Kakinoki Date: Mon, 8 Sep 2025 11:59:05 +0900 Subject: [PATCH] feat: update nixpkgs from nixpkgs-unstable to master branch MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Switch nixpkgs input from nixpkgs-unstable to master branch for latest packages - Update flake.lock with new nixpkgs revision 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- flake.lock | 8 ++++---- flake.nix | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/flake.lock b/flake.lock index da60da345..0295a9153 100644 --- a/flake.lock +++ b/flake.lock @@ -107,16 +107,16 @@ }, "nixpkgs": { "locked": { - "lastModified": 1757034884, - "narHash": "sha256-PgLSZDBEWUHpfTRfFyklmiiLBE1i1aGCtz4eRA3POao=", + "lastModified": 1757296433, + "narHash": "sha256-RtHIYELe4S8GNajmG8D3Ngq29MLYEi6k8PmO8C3m8IY=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "ca77296380960cd497a765102eeb1356eb80fed0", + "rev": "d44f2e86707bae01ecce6af5d4da3674529d183c", "type": "github" }, "original": { "owner": "NixOS", - "ref": "nixpkgs-unstable", + "ref": "master", "repo": "nixpkgs", "type": "github" } diff --git a/flake.nix b/flake.nix index 6e67b2155..d21195833 100644 --- a/flake.nix +++ b/flake.nix @@ -3,7 +3,7 @@ inputs = { nixpkgs = { - url = "github:NixOS/nixpkgs/nixpkgs-unstable"; + url = "github:NixOS/nixpkgs/master"; }; home-manager = { url = "github:nix-community/home-manager";