dotfiles/home/modules/tui/extras/default.nix
2024-12-22 14:42:32 -06:00

24 lines
593 B
Nix

{ pkgs, ... }: {
# Extra CLI apps
imports = [ ../default.nix ./go.nix ];
home.packages = with pkgs; [
android-tools # Android SDK
awscli # AWS CLI
dnscontrol # Control your DNS
envsubst # Envvar substitution for Go
google-cloud-sdk # GCP CLI
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 = {
shellAbbrs = { k = "kubectl"; };
functions = { nugo = "hugo new content/posts/$argv/index.md"; };
};
}