Commit bb86097f541c
Changed files (1)
users
vincent
containers
users/vincent/containers/gcloud.nix
@@ -1,5 +1,14 @@
{ pkgs, ... }:
{
- home.packages = with pkgs; [ google-cloud-sdk ];
+ home.packages = with pkgs; [
+ (google-cloud-sdk.withExtraComponents
+ (with google-cloud-sdk.components; [
+ gke-gcloud-auth-plugin
+ gcloud-man-pages
+ cloud-run-proxy
+ terraform-tools
+ ])
+ )
+ ];
}