1
0
mirror of https://github.com/tboerger/nixos-config synced 2024-11-29 20:52:33 +01:00
github.com-tboerger-nixos-c.../profiles/programs/kube.nix
2022-09-27 22:07:46 +02:00

43 lines
640 B
Nix

{ pkgs, lib, config, options, ... }:
with lib;
let
cfg = config.profile.programs.kube;
in
{
options = {
profile = {
programs = {
kube = {
enable = mkEnableOption "Kube";
};
};
};
};
config = mkIf cfg.enable {
environment = {
systemPackages = with pkgs; [
argocd
chart-testing
clusterctl
helm-docs
jsonnet
jsonnet-bundler
k9s
kind
krew
kubectl
kubectx
kubernetes-helm
kustomize
kustomize-sops
sonobuoy
stern
yamale
];
};
};
}