rename flake inputs nixpkgs-stable to nixpkgs_25-05

This commit is contained in:
Henri Dohmen 2025-12-29 13:24:04 +01:00
parent 3214104811
commit bafe0b7aa2
Signed by: hd
GPG key ID: AB79213B044674AE
3 changed files with 8 additions and 8 deletions

View file

@ -1,7 +1,7 @@
{
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
nixpkgs-stable.url = "github:NixOS/nixpkgs/nixos-25.05";
nixpkgs_25-05.url = "github:NixOS/nixpkgs/nixos-25.05";
nixos-hardware.url = "github:NixOS/nixos-hardware/master";
colmena = {
url = "github:zhaofengli/colmena";
@ -42,17 +42,17 @@
home-manager,
lanzaboote,
nixos-hardware,
nixpkgs-stable,
nixpkgs_25-05,
nixpkgs,
vscode-extensions,
}@inputs:
let
inherit (nixpkgs) lib;
lib' = import ./lib.nix { inherit lib; };
pkgs-stable = import nixpkgs-stable { system = "x86_64-linux"; };
pkgs_25-05 = import nixpkgs_25-05 { system = "x86_64-linux"; };
specialArgs = rec {
inherit inputs lib' pkgs-stable;
inherit inputs lib' pkgs_25-05;
var = import ./var { inherit lib; };
secrets = lib'.walk-dir ./secrets;
};