oliverdavies.uk/flake.nix

21 lines
442 B
Nix
Raw Normal View History

2025-03-30 21:17:25 +01:00
{
inputs = {
devshell.inputs.nixpkgs.follows = "nixpkgs";
devshell.url = "github:numtide/devshell";
2025-03-30 21:17:25 +01:00
flake-parts.url = "github:hercules-ci/flake-parts";
2025-08-17 15:42:05 +01:00
import-tree.url = "github:vic/import-tree";
2025-08-22 00:42:54 +01:00
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
};
2025-03-30 21:17:25 +01:00
outputs =
inputs:
inputs.flake-parts.lib.mkFlake { inherit inputs; } {
imports = [
(inputs.import-tree ./flake-modules)
];
2025-03-30 21:17:25 +01:00
};
}