-
Notifications
You must be signed in to change notification settings - Fork 0
/
devenv.nix
57 lines (55 loc) · 1.14 KB
/
devenv.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
53
54
55
56
57
{ inputs, ... }:
let
inherit (inputs) nixpkgs devenv;
systems = [
"x86_64-linux"
"i686-linux"
"x86_64-darwin"
"aarch64-linux"
"aarch64-darwin"
];
forAllSystems = f:
builtins.listToAttrs (map (name: {
inherit name;
value = f name;
}) systems);
in forAllSystems (system:
let
pkgs = import nixpkgs {
inherit system;
config = { allowUnfree = true; };
};
in {
default = devenv.lib.mkShell {
inherit inputs pkgs;
modules = [{
env = {
NOMAD_ADDR = "http://10.10.0.10:4646";
CONSUL_HTTP_ADDR = "http://10.10.0.10:8500";
VAULT_ADDR = "https://vault.cliarena.com:8200";
# VAULT_ADDR = "http://10.10.0.10:8200";
};
processes = { };
packages = with pkgs; [
vault
consul
nomad
terraform
sops
dig
openssl
cowsay
libuuid
wander
# for nix
nixfmt
nil
stylua
lua-language-server
];
enterShell = ''
cowsay salam to you
'';
}];
};
})