dotfiles/home/modules/tui/extras/default.nix

25 lines
597 B
Nix
Raw Normal View History

{ pkgs, ... }: {
# Extra CLI apps
2024-12-20 01:30:06 +00:00
imports = [ ../default.nix ./go.nix ];
home.packages = with pkgs; [
android-tools # Android SDK
2023-08-04 18:45:23 +00:00
awscli # AWS CLI
2024-10-24 02:47:18 +00:00
dnscontrol # Control your DNS
envsubst # Envvar substitution for Go
2023-08-04 18:45:23 +00:00
google-cloud-sdk # GCP CLI
2024-10-24 02:48:03 +00:00
gh # Github CLI
kubectl # Container wrangler
nil # Nix LSP
nixfmt-classic # Nix formatter (old, stable one until the new one is stableish)
vault # Hashicorp vault
];
programs.fish = {
2024-12-20 01:30:06 +00:00
shellAbbrs = rec { k = "kubectl"; };
2024-12-20 01:30:06 +00:00
functions = { nugo = "hugo new content/posts/$argv/index.md"; };
};
2024-12-20 01:30:06 +00:00
}