feat: add nix flake

This commit is contained in:
cato-001 2026-01-02 11:31:22 +01:00 committed by cato
parent e56caff408
commit 2d11922807
5 changed files with 94 additions and 0 deletions

14
flake.nix Normal file
View file

@ -0,0 +1,14 @@
{
description = "My common project templates";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs?ref=nixos-25.11";
blueprint = {
url = "github:numtide/blueprint";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs = inputs: inputs.blueprint { inherit inputs; };
}