Files
serhao/flake.nix
2025-12-30 16:05:18 +01:00

14 lines
347 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";
};
# Load the blueprint
outputs = inputs: inputs.blueprint { inherit inputs; };
}