home

My NixOS systems configurations.
Log | Files | Refs | LICENSE

gcloud.nix (260B)


      1 { pkgs, ... }:
      2 
      3 {
      4   home.packages = with pkgs; [
      5     (google-cloud-sdk.withExtraComponents
      6       (with google-cloud-sdk.components; [
      7         gke-gcloud-auth-plugin
      8         gcloud-man-pages
      9         cloud-run-proxy
     10         terraform-tools
     11       ])
     12     )
     13   ];
     14 }