templates/flake.nix

15 lines
266 B
Nix
Raw Permalink Normal View History

2026-01-02 11:31:22 +01:00
{
description = "My common project templates";
inputs = {
2026-03-14 15:04:50 +01:00
nixpkgs.url = "nixpkgs";
2026-01-02 11:31:22 +01:00
blueprint = {
url = "github:numtide/blueprint";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs = inputs: inputs.blueprint { inherit inputs; };
}