dotfiles/home/features/cli/extras/default.nix

30 lines
589 B
Nix
Raw Normal View History

{ pkgs, ... }: {
# Extra CLI apps
imports = [
../default.nix
./direnv.nix
./go.nix
];
home.packages = with pkgs; [
android-tools # Android SDK
2023-08-04 18:45:23 +00:00
awscli # AWS CLI
envsubst # Envvar substitution for Go
2023-08-04 18:45:23 +00:00
google-cloud-sdk # GCP 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 = rec {
k = "kubectl";
};
functions = {
nugo = "hugo new content/posts/$argv/index.md";
};
};
}