Files
serhao/flake.nix
2026-01-15 11:13:54 +01:00

15 lines
389 B
Nix

{
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";
sqlit.url = "github:Maxteabag/sqlit";
};
# Load the blueprint
outputs = inputs: inputs.blueprint { inherit inputs; };
}