blob: 6516bd5991af186990c9cd71e827486efd28c289 (
plain)
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
|
{ config, pkgs, ... }:
let
inherit (pkgs) stdenv;
spGitConfig = {
user.email = "alan@satoshipay.io";
};
in
{
imports = [
./javascript.nix
];
home.sessionVariables = {
KUBECTX_IGNORE_FZF = "1";
};
home.packages = with pkgs; ([
caddy
openssl
mongodb-tools
pgcli
s3cmd
sops
unstable.mkcert
unstable.google-cloud-sdk
unstable.docker_compose
unstable.kubernetes
unstable.kubectx
unstable.kubernetes-helm
unstable.helmfile
] ++ (lib.optionals (!stdenv.isDarwin)
[
pgadmin
unstable.redis-desktop-manager
unstable.robo3t
unstable.slack
]));
programs.git.includes = [
{
condition = "gitdir:~/projects/github.com/satoshipay/";
contents = spGitConfig;
}
{
condition = "gitdir:~/projects/gitlab.satoshipay.tech";
contents = spGitConfig;
}
];
home.file.".npmrc".text = ''
@satoshipay:registry=https://registry.npmjs.org/
'';
}
|