14 lines
347 B
Nix
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; };
|
|
}
|