-
Notifications
You must be signed in to change notification settings - Fork 0
/
args.nix
52 lines (51 loc) · 1.38 KB
/
args.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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{self, ...}: {
perSystem = {
config,
self',
inputs',
system,
pkgs,
...
}: {
_module.args = {
runtimeInputs = with pkgs; [
bun
centauri
cw-cvm-executor
cw-cvm-outpost
cw-mantis-order
dasel
getoptions
gex
grpcurl
jq
nix-tree
osmosis
hermes
mantis
awscli2
nixos-rebuild
terranix
terraform-ls
opentofu
unixtools.watch
];
pkgs = import self.inputs.nixpkgs {
inherit system;
overlays = with self.inputs; [
composable-networks.overlays.default
(final: prev: {
centauri = self.inputs.cosmos.packages."${system}".centauri;
osmosis = self.inputs.cosmos.packages."${system}".osmosis;
hermes = self.inputs.cosmos.packages."${system}".hermes;
cw-cvm-executor = self.inputs.composable-vm.packages."${system}".cw-cvm-executor;
cw-cvm-outpost = self.inputs.composable-vm.packages."${system}".cw-cvm-outpost;
cw-mantis-order = self.inputs.composable-vm.packages."${system}".cw-mantis-order;
mantis = self.inputs.composable-vm.packages."${system}".mantis;
mantis-blackbox = self.inputs.composable-vm.packages."${system}".mantis-blackbox;
})
];
};
};
};
}