system/users/modules/work_tools.nix

14 lines
259 B
Nix
Raw Normal View History

{ 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
];
}