1
1
Fork 0
mirror of https://github.com/NixOS/nix.git synced 2025-12-18 23:11:08 +01:00

Use FlakeHub inputs

This commit is contained in:
Luc Perkins 2025-06-04 23:04:13 -07:00
parent e98cad60b2
commit 268bef8cdf
No known key found for this signature in database
GPG key ID: C86EE5D85EE4DDA5
2 changed files with 27 additions and 34 deletions

View file

@ -1,14 +1,14 @@
{
description = "The purely functional package manager";
inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
inputs.nixpkgs.url = "https://flakehub.com/f/NixOS/nixpkgs/0.1";
inputs.nixpkgs-regression.url = "github:NixOS/nixpkgs/215d4d0fd80ca5163643b03a33fde804a29cc1e2";
inputs.nixpkgs-23-11.url = "github:NixOS/nixpkgs/a62e6edd6d5e1fa0329b8653c801147986f8d446";
# dev tooling
inputs.flake-parts.url = "github:hercules-ci/flake-parts";
inputs.git-hooks-nix.url = "github:cachix/git-hooks.nix";
inputs.flake-parts.url = "https://flakehub.com/f/hercules-ci/flake-parts/0.1";
inputs.git-hooks-nix.url = "https://flakehub.com/f/cachix/git-hooks.nix/0.1";
# work around https://github.com/NixOS/nix/issues/7730
inputs.flake-parts.inputs.nixpkgs-lib.follows = "nixpkgs";
inputs.git-hooks-nix.inputs.nixpkgs.follows = "nixpkgs";