This repository has been archived on 2025-08-05. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
learn-go-with-tests/flake.nix
Oliver Davies 6be1c9d65c
Some checks failed
CI / test (push) Has been cancelled
Add Nix flake
2025-07-29 21:54:35 +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) ];
};
}