-
Notifications
You must be signed in to change notification settings - Fork 0
/
devbox.json
89 lines (89 loc) · 2.26 KB
/
devbox.json
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"packages": [
"nodejs@latest",
"complgen@latest",
"iftop@latest",
"gotop@latest",
"cmatrix@latest",
"atuin@latest",
"bat@latest",
"btop@latest",
"chezmoi@latest",
"cloc@latest",
"direnv@latest",
"duf@latest",
"eza@latest",
"fd@latest",
"fzf@latest",
"gh@latest",
"git@latest",
"glab@latest",
"glow@latest",
"htop@latest",
"jq@latest",
"kubectl@latest",
"kubernetes-helm@latest",
"ncdu@latest",
"neofetch@latest",
"neovim@latest",
"nmap@latest",
"nnn@latest",
"p7zip@latest",
"pstree@latest",
"pv@latest",
"ripgrep@latest",
"starship@latest",
"thefuck@latest",
"tig@latest",
"tldr@latest",
"tmux@latest",
"tree-sitter@latest",
"tree@latest",
"unzip@latest",
"wget@latest",
"yq@latest",
"zoxide@latest",
"wl-clipboard@latest",
"headscale@latest",
"rclone@latest",
"ollama@latest",
"sqlite@latest",
"ejson@latest",
"ejson2env@latest"
],
"env": {
"DEVBOX_GLOBAL_PREFIX": "$HOME/.local/share/devbox/global/default/.devbox/nix/profile/default",
"DEVBOX_GLOBAL_ROOT": "$HOME/.local/share/devbox/global/current"
},
"shell": {
"init_hook": [
". ${DEVBOX_GLOBAL_ROOT}/init.sh"
],
"scripts": {
"completion-path": [
"echo ${DEVBOX_GLOBAL_ROOT}/chezmoi/dot_config/aux-zsh-completions/stdout-completions.zsh"
],
"complgen-man": [
"man $1 | complgen scrape > ${DEVBOX_GLOBAL_ROOT}/chezmoi/dot_config/complgen/$1.usage.tmpl"
],
"complgen-help": [
"$1 --help | complgen scrape > ${DEVBOX_GLOBAL_ROOT}/chezmoi/dot_config/complgen/$1.usage.tmpl"
],
"install-nnn": [
"sh -c \"$(curl -Ls https://raw.githubusercontent.com/jarun/nnn/master/plugins/getplugs)\""
],
"install-tmux": [
"git clone https://github.com/tmux-plugins/tpm ~/.tmux/plugins/tpm"
],
"install-chezmoi": [
"chezmoi purge --force && chezmoi init",
"cp -r $(devbox global path)/chezmoi/* $(chezmoi source-path)",
"chezmoi apply --no-pager --progress true"
],
"latest-hash": [
"curl -fsSL https://nixos.org/channels/nixos-unstable/git-revision"
]
},
"nixpkgs": {}
}
}