blob: 793dc7b158053d380934ee54370fe779e056abbc (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
{
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
flake-parts.url = "github:hercules-ci/flake-parts";
import-tree.url = "github:vic/import-tree";
};
outputs = inputs:
inputs.flake-parts.lib.mkFlake {inherit inputs;}
(inputs.import-tree ./modules);
}
|