nixos

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

commit 2e828021b720fe0e2c2acb4041b25f1ee95f5d4c
parent 8d74c676db11acb473bdec2bb9f0306f10d8587e
Author: Toni Brown <me@tb148.eu.org>
Date:   Wed,  5 Nov 2025 01:08:38 +0800

Switch nixpkgs-master input to nixpkgs-stable

Diffstat:
Mflake.lock | 14+++++++-------
Mflake.nix | 2+-
2 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/flake.lock b/flake.lock @@ -73,18 +73,18 @@ "url": "https://mirrors.tuna.tsinghua.edu.cn/git/nixpkgs.git" } }, - "nixpkgs-master": { + "nixpkgs-stable": { "locked": { - "lastModified": 1761736695, - "narHash": "sha256-aHqq22ESPW352eoxg/rGlkVg/xNSBTyuuoYaa3Fx30I=", - "ref": "master", - "rev": "591be394c2247b9dde827e9a17498da15076d640", + "lastModified": 1754689972, + "narHash": "sha256-eogqv6FqZXHgqrbZzHnq43GalnRbLTkbBbFtEfm1RSc=", + "ref": "nixos-25.05", + "rev": "fc756aa6f5d3e2e5666efcf865d190701fef150a", "shallow": true, "type": "git", "url": "https://mirrors.tuna.tsinghua.edu.cn/git/nixpkgs.git" }, "original": { - "ref": "master", + "ref": "nixos-25.05", "shallow": true, "type": "git", "url": "https://mirrors.tuna.tsinghua.edu.cn/git/nixpkgs.git" @@ -96,7 +96,7 @@ "home-manager": "home-manager", "midnight": "midnight", "nixpkgs": "nixpkgs", - "nixpkgs-master": "nixpkgs-master" + "nixpkgs-stable": "nixpkgs-stable" } } }, diff --git a/flake.nix b/flake.nix @@ -4,7 +4,7 @@ inputs = { # NixOS 官方软件源,这里使用 nixos-unstable 分支 nixpkgs.url = "git+https://mirrors.tuna.tsinghua.edu.cn/git/nixpkgs.git?ref=nixos-unstable&shallow=1"; - nixpkgs-master.url = "git+https://mirrors.tuna.tsinghua.edu.cn/git/nixpkgs.git?ref=master&shallow=1"; + nixpkgs-stable.url = "git+https://mirrors.tuna.tsinghua.edu.cn/git/nixpkgs.git?ref=nixos-25.05&shallow=1"; home-manager.url = "github:nix-community/home-manager"; home-manager.inputs.nixpkgs.follows = "nixpkgs"; catppuccin.url = "github:catppuccin/nix";