added kubernetes stuff

This commit is contained in:
Fishandchips321 2026-02-27 18:06:53 +00:00
parent 6c5e8c121c
commit c747e19474
2 changed files with 29 additions and 0 deletions

16
modules/kubernetes.nix Normal file
View file

@ -0,0 +1,16 @@
{config, pkgs, lib, ...}:
let
cfg = config.modules.kubernetes;
in
{
optons.modules.kubernetes.enable = lib.mkEnableOption "Enable MiniKube and Kubectl";
config = lib.mkIf cfg.enable {
environment.systemPackages = with pkgs; [
minikube
kubectl
];
};
}