2022-10-17 18:29:06 +03:00
|
|
|
{ pkgs, ... }:
|
|
|
|
|
|
|
|
{
|
|
|
|
home.packages = with pkgs; [
|
2023-03-03 00:28:41 +03:00
|
|
|
/*
|
|
|
|
(google-cloud-sdk.withExtraComponents (
|
2022-10-17 18:29:06 +03:00
|
|
|
let gc = google-cloud-sdk.components; in [
|
|
|
|
gc.gke-gcloud-auth-plugin
|
|
|
|
gc.kubectl
|
|
|
|
]
|
2023-03-03 00:28:41 +03:00
|
|
|
))
|
|
|
|
*/
|
2023-01-12 23:35:54 +03:00
|
|
|
postgresql_14 # 🤷 I need only psql
|
2022-10-17 18:29:06 +03:00
|
|
|
];
|
2023-03-03 01:40:19 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
programs.zsh.initExtra = lib.mkAfter ''
|
|
|
|
eval $(kubectl completion zsh)
|
|
|
|
'';
|
|
|
|
*/
|
|
|
|
|
2022-10-17 18:29:06 +03:00
|
|
|
}
|