2025-08-20 18:28:32 +02:00
|
|
|
# https://discourse.nixos.org/t/recommended-way-to-sync-locked-versions-across-flakes/34643/3
|
|
|
|
|
# https://github.com/shanesveller/nix-flake-lock-targets/blob/develop/flake.nix
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
|
description = "Empty flake to align multiple repos' nixpkgs inputs";
|
|
|
|
|
|
|
|
|
|
inputs = {
|
|
|
|
|
nixpkgs-unstable.url = "github:nixos/nixpkgs/nixos-unstable";
|
|
|
|
|
nixpkgs-master.url = "github:nixos/nixpkgs/master";
|
2025-08-20 19:56:14 +02:00
|
|
|
flake-utils.url = "github:numtide/flake-utils";
|
2025-08-20 18:28:32 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
outputs = _: {};
|
|
|
|
|
}
|