2025-04-23 20:35:36 +01:00
|
|
|
{
|
2025-04-23 20:48:20 +01:00
|
|
|
inputs = {
|
2025-10-13 19:57:49 +01:00
|
|
|
devshell.inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
devshell.url = "github:numtide/devshell";
|
2025-04-23 20:48:20 +01:00
|
|
|
flake-parts.url = "github:hercules-ci/flake-parts";
|
2025-10-13 19:57:49 +01:00
|
|
|
import-tree.url = "github:vic/import-tree";
|
2025-04-23 20:48:20 +01:00
|
|
|
nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable";
|
|
|
|
process-compose.url = "github:Platonic-Systems/process-compose-flake";
|
|
|
|
services.url = "github:juspay/services-flake";
|
|
|
|
systems.url = "github:nix-systems/default";
|
|
|
|
};
|
2025-04-23 20:35:36 +01:00
|
|
|
|
|
|
|
outputs =
|
2025-04-23 20:48:20 +01:00
|
|
|
inputs:
|
|
|
|
inputs.flake-parts.lib.mkFlake { inherit inputs; } {
|
2025-10-13 19:57:49 +01:00
|
|
|
imports = [ (inputs.import-tree ./tools/nix) ];
|
2025-04-23 20:35:36 +01:00
|
|
|
};
|
|
|
|
}
|