system/users/modules/work_tools.nix

23 lines
376 B
Nix
Raw Normal View History

{ pkgs, ... }:
{
home.packages = with pkgs; [
2023-03-03 00:28:41 +03:00
/*
(google-cloud-sdk.withExtraComponents (
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
];
/*
programs.zsh.initExtra = lib.mkAfter ''
eval $(kubectl completion zsh)
'';
*/
}