-
Notifications
You must be signed in to change notification settings - Fork 8
/
flake.nix
33 lines (32 loc) · 1.21 KB
/
flake.nix
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{
description = "Hydra Doom";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-24.05";
flake-utils.url = "github:numtide/flake-utils";
hydra.url = "github:input-output-hk/hydra/doom";
cardano-node.url = "github:intersectmbo/cardano-node/8.9.4";
flake-parts.url = "github:hercules-ci/flake-parts";
process-compose-flake.url = "github:Platonic-Systems/process-compose-flake";
hydra-control-plane.url = "github:cardano-scaling/hydra-control-plane";
doom-wasm.url = "github:cardano-scaling/doom-wasm";
nix-inclusive.url = "github:input-output-hk/nix-inclusive";
colmena.url = "github:zhaofengli/colmena";
sops-nix.url = "github:Mic92/sops-nix";
treefmt-nix.url = "github:numtide/treefmt-nix";
treefmt-nix.inputs.nixpkgs.follows = "nixpkgs";
};
outputs = { self, flake-parts, nixpkgs, ... }@ inputs: let
inherit ((import ./flake/lib.nix {inherit inputs;}).flake.lib) recursiveImports;
in flake-parts.lib.mkFlake { inherit inputs; } {
imports = recursiveImports [
./flake
./perSystem
] ++ [
inputs.process-compose-flake.flakeModule
inputs.treefmt-nix.flakeModule
];
systems = [
"x86_64-linux"
];
};
}