13 lines
259 B
Nix
13 lines
259 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
home.packages = with pkgs; [
|
|
(google-cloud-sdk.withExtraComponents (
|
|
let gc = google-cloud-sdk.components; in [
|
|
gc.gke-gcloud-auth-plugin
|
|
gc.kubectl
|
|
]
|
|
))
|
|
postgresql_14 # 🤷 I need only psql
|
|
];
|
|
}
|