19 lines
307 B
Nix
19 lines
307 B
Nix
|
{ lib, config, pkgs, ... }:
|
||
|
|
||
|
with lib;
|
||
|
|
||
|
let cfg = config.within.k8s;
|
||
|
in {
|
||
|
options.within.k8s.enable = mkEnableOption "Kubernetes tools";
|
||
|
config = mkIf cfg.enable {
|
||
|
home.packages = with pkgs; [
|
||
|
# cluster management tool
|
||
|
kubectl
|
||
|
kubectx
|
||
|
k9s
|
||
|
|
||
|
# kubernetes in docker
|
||
|
kind
|
||
|
];
|
||
|
};}
|