Initial commit

This commit is contained in:
2025-08-20 18:28:32 +02:00
commit 22259b899c
2 changed files with 226 additions and 0 deletions

13
flake.nix Normal file
View File

@@ -0,0 +1,13 @@
# 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";
};
outputs = _: {};
}