lab/learn-go-with-tests/flake.nix
Oliver Davies b7c3fffbaa Move from learn-go-with-tests
Signed-off-by: Oliver Davies <oliver@oliverdavies.uk>
2025-09-25 13:42:49 +01:00

15 lines
425 B
Nix

{
inputs = {
devshell.inputs.nixpkgs.follows = "nixpkgs";
devshell.url = "github:numtide/devshell";
flake-parts.url = "github:hercules-ci/flake-parts";
import-tree.url = "github:vic/import-tree";
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
};
outputs =
inputs:
inputs.flake-parts.lib.mkFlake { inherit inputs; } {
imports = [ (inputs.import-tree ./flake-modules) ];
};
}