2023-10-08 17:51:37 +02:00
|
|
|
{ pkgs, ... }: {
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
|
|
azure-cli
|
|
|
|
fluxcd
|
|
|
|
(google-cloud-sdk.withExtraComponents [
|
|
|
|
google-cloud-sdk.components.gke-gcloud-auth-plugin
|
|
|
|
])
|
2023-10-09 13:45:53 +02:00
|
|
|
k9s
|
2023-10-08 17:51:37 +02:00
|
|
|
kind
|
|
|
|
kubectl
|
|
|
|
kubernetes-helm
|
|
|
|
kustomize
|
|
|
|
poetry
|
|
|
|
pre-commit
|
|
|
|
sops
|
|
|
|
terraform
|
|
|
|
];
|
2023-10-09 13:45:53 +02:00
|
|
|
|
|
|
|
# Allow port-forward to 443
|
|
|
|
security.wrappers = {
|
|
|
|
k9s = {
|
|
|
|
source = "${pkgs.k9s}/bin/k9s";
|
|
|
|
owner = "root";
|
|
|
|
group = "root";
|
|
|
|
capabilities = "cap_net_bind_service+ep";
|
|
|
|
};
|
|
|
|
};
|
2023-10-08 17:51:37 +02:00
|
|
|
}
|