This commit is contained in:
2025-12-30 16:05:18 +01:00
commit ec12c3826b
5 changed files with 125 additions and 0 deletions

13
flake.nix Normal file
View File

@@ -0,0 +1,13 @@
{
description = "Simple flake with a devshell";
# Add all your dependencies here
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs?ref=nixos-unstable";
blueprint.url = "github:numtide/blueprint";
blueprint.inputs.nixpkgs.follows = "nixpkgs";
};
# Load the blueprint
outputs = inputs: inputs.blueprint { inherit inputs; };
}