├── .github ├── FUNDING.yml └── workflows │ └── test.yml ├── .tangled └── workflows │ └── mirror.yml ├── LICENSE ├── README.md ├── checkmate ├── modules │ ├── formatter.nix │ └── tests.nix └── tree │ ├── a │ ├── a.txt │ ├── a_b.nix │ └── b │ │ ├── _c │ │ └── d │ │ │ ├── _f.nix │ │ │ └── e.nix │ │ ├── _n.nix │ │ ├── b_a.nix │ │ └── m.nix │ ├── hello │ └── world │ ├── modules │ ├── hello-option │ │ └── mod.nix │ └── hello-world │ │ └── mod.nix │ └── x │ └── y.nix ├── default.nix └── flake.nix /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vic/import-tree/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vic/import-tree/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.tangled/workflows/mirror.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vic/import-tree/HEAD/.tangled/workflows/mirror.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vic/import-tree/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vic/import-tree/HEAD/README.md -------------------------------------------------------------------------------- /checkmate/modules/formatter.nix: -------------------------------------------------------------------------------- 1 | { 2 | perSystem.treefmt.settings.global.excludes = [ "checkmate/tree/*" ]; 3 | } 4 | -------------------------------------------------------------------------------- /checkmate/modules/tests.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vic/import-tree/HEAD/checkmate/modules/tests.nix -------------------------------------------------------------------------------- /checkmate/tree/a/a.txt: -------------------------------------------------------------------------------- 1 | hello -------------------------------------------------------------------------------- /checkmate/tree/a/a_b.nix: -------------------------------------------------------------------------------- 1 | { } 2 | -------------------------------------------------------------------------------- /checkmate/tree/a/b/_c/d/_f.nix: -------------------------------------------------------------------------------- 1 | true 2 | -------------------------------------------------------------------------------- /checkmate/tree/a/b/_c/d/e.nix: -------------------------------------------------------------------------------- 1 | { } 2 | -------------------------------------------------------------------------------- /checkmate/tree/a/b/_n.nix: -------------------------------------------------------------------------------- 1 | { } 2 | -------------------------------------------------------------------------------- /checkmate/tree/a/b/b_a.nix: -------------------------------------------------------------------------------- 1 | { } 2 | -------------------------------------------------------------------------------- /checkmate/tree/a/b/m.nix: -------------------------------------------------------------------------------- 1 | { } 2 | -------------------------------------------------------------------------------- /checkmate/tree/hello/world: -------------------------------------------------------------------------------- 1 | hola 2 | -------------------------------------------------------------------------------- /checkmate/tree/modules/hello-option/mod.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vic/import-tree/HEAD/checkmate/tree/modules/hello-option/mod.nix -------------------------------------------------------------------------------- /checkmate/tree/modules/hello-world/mod.nix: -------------------------------------------------------------------------------- 1 | { 2 | hello = "world"; 3 | } 4 | -------------------------------------------------------------------------------- /checkmate/tree/x/y.nix: -------------------------------------------------------------------------------- 1 | "z" 2 | -------------------------------------------------------------------------------- /default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vic/import-tree/HEAD/default.nix -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- 1 | { 2 | outputs = _: import ./.; 3 | } 4 | --------------------------------------------------------------------------------