Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 26 additions & 4 deletions home-manager/packages/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -13,22 +13,27 @@ with pkgs;
[
inputs.agenix.packages.${stdenv.hostPlatform.system}.default
pkgs.nur.repos.charmbracelet.crush
_1password-cli
act
age
aichat
angle-grinder
pkgs.llm-agents.antigravity
argocd
ast-grep
awscli
azure-cli
bandwhich
bat
pkgs.llm-agents.bernstein
broot
bun
choose
clipse
cmatrix
cloudflared
copybara
croc
curl
curlie
cursor-cli
Expand All @@ -48,9 +53,12 @@ with pkgs;
fd
foundry-bin
fswatch
fx
fzf-make
gh
gh-dash
git
git-absorb
Comment thread
shunkakinoki marked this conversation as resolved.
gitleaks
glance
glow
Expand All @@ -61,10 +69,14 @@ with pkgs;
gping
grc
pkgs.llm-agents.grok
gron
hexyl
htop
httpie
hyperfine
input-leap
iperf3
jnv
jq
jujutsu
just
Expand All @@ -73,35 +85,45 @@ with pkgs;
lefthook
(if stdenv.isLinux && isDesktop then llama-cpp.override { vulkanSupport = true; } else llama-cpp)
llm
lnav
lsof
mariadb
mise
mkcert
mtr
navi
ncdu
nmap
oha
opentelemetry-collector-contrib
Comment thread
shunkakinoki marked this conversation as resolved.
pingu
pnpm
postgresql_18
process-compose
procs
rclone
restic
ripgrep
sccache
sd
shellcheck
shellspec
sops
speedtest-cli
sqlite
stern
tealdeer
termshark
tig
tmuxinator
tokei
tree
tree-sitter
trippy
turso-cli
uv
Comment thread
shunkakinoki marked this conversation as resolved.
victorialogs
victoriametrics
victoriatraces
vector
watchexec
websocat
wget
yarn
yazi
Expand Down
6 changes: 6 additions & 0 deletions home-manager/programs/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ let
ghq = import ./ghq;
git = import ./git;
go = import ./go;
grafana = import ./grafana;
haskell = import ./haskell;
java = import ./java;
k8s = import ./k8s;
Expand All @@ -39,6 +40,7 @@ let
perl = import ./perl;
php = import ./php;
prometheus = import ./prometheus;
protobuf = import ./protobuf;
python = import ./python;
ruby = import ./ruby;
rust = import ./rust;
Expand All @@ -48,6 +50,7 @@ let
terraform = import ./terraform;
tms = import ./tms;
tmux = import ./tmux;
victoriametrics = import ./victoriametrics;
yaml = import ./yaml;
yazi = import ./yazi;
zig = import ./zig;
Expand All @@ -74,6 +77,7 @@ in
ghq
git
go
grafana
haskell
java
k8s
Expand All @@ -90,6 +94,7 @@ in
perl
php
prometheus
protobuf
python
ruby
rust
Expand All @@ -99,6 +104,7 @@ in
terraform
tms
tmux
victoriametrics
yaml
yazi
zig
Expand Down
7 changes: 7 additions & 0 deletions home-manager/programs/grafana/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{ pkgs, ... }:
{
home.packages = with pkgs; [
grafana-alloy
grafana-loki
];
}
1 change: 1 addition & 0 deletions home-manager/programs/k8s/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
kubectx
kubernetes-helm
kustomize
stern
]
++ lib.optionals stdenv.isLinux [
k3s
Expand Down
9 changes: 9 additions & 0 deletions home-manager/programs/protobuf/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{ pkgs, ... }:
{
home.packages = with pkgs; [
buf
ghz
grpcurl
protobuf
];
}
1 change: 1 addition & 0 deletions home-manager/programs/terraform/default.nix
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{ pkgs, ... }:
{
home.packages = with pkgs; [
opentofu
terraform
terraform-ls
];
Expand Down
8 changes: 8 additions & 0 deletions home-manager/programs/victoriametrics/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{ pkgs, ... }:
{
home.packages = with pkgs; [
victorialogs
victoriametrics
victoriatraces
];
}
Loading