nixos

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

commit 462d3b0ada543639b030e8fcc1937c73796ece9c
parent 795e2b619ad34a5717f3f3d37f0ea272fd49e61a
Author: Toni Brown <me@tb148.net>
Date:   Sun,  7 Dec 2025 17:33:33 +0800

Add nixpkgs-staging input to flake

Diffstat:
Mflake.lock | 20+++++++++++++++++++-
Mflake.nix | 1+
2 files changed, 20 insertions(+), 1 deletion(-)

diff --git a/flake.lock b/flake.lock @@ -74,12 +74,30 @@ "url": "https://mirrors.tuna.tsinghua.edu.cn/git/nixpkgs.git" } }, + "nixpkgs-staging": { + "locked": { + "lastModified": 1764942812, + "narHash": "sha256-8XN2U6Ode+LjGldWiah9TK6OwiUq1b19DLg5xYBvk5k=", + "ref": "staging", + "rev": "292a381da192ef43d302d219daba549c7ac06fa6", + "shallow": true, + "type": "git", + "url": "https://mirrors.tuna.tsinghua.edu.cn/git/nixpkgs.git" + }, + "original": { + "ref": "staging", + "shallow": true, + "type": "git", + "url": "https://mirrors.tuna.tsinghua.edu.cn/git/nixpkgs.git" + } + }, "root": { "inputs": { "catppuccin": "catppuccin", "home-manager": "home-manager", "nixpkgs": "nixpkgs", - "nixpkgs-stable": "nixpkgs-stable" + "nixpkgs-stable": "nixpkgs-stable", + "nixpkgs-staging": "nixpkgs-staging" } } }, diff --git a/flake.nix b/flake.nix @@ -4,6 +4,7 @@ inputs = { nixpkgs.url = "git+https://mirrors.tuna.tsinghua.edu.cn/git/nixpkgs.git?ref=nixos-unstable&shallow=1"; nixpkgs-stable.url = "git+https://mirrors.tuna.tsinghua.edu.cn/git/nixpkgs.git?ref=nixos-25.11&shallow=1"; + nixpkgs-staging.url = "git+https://mirrors.tuna.tsinghua.edu.cn/git/nixpkgs.git?ref=staging&shallow=1"; home-manager.url = "github:nix-community/home-manager"; home-manager.inputs.nixpkgs.follows = "nixpkgs"; catppuccin.url = "github:catppuccin/nix";