14 lines
259 B
Nix
14 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_12 # 🤷 I need only psql
|
||
|
];
|
||
|
}
|