mirror of
https://github.com/jbowdre/dotfiles.git
synced 2024-12-23 12:42:18 +00:00
24 lines
597 B
Nix
24 lines
597 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 = rec { k = "kubectl"; };
|
|
|
|
functions = { nugo = "hugo new content/posts/$argv/index.md"; };
|
|
};
|
|
}
|