23 lines
361 B
Nix
23 lines
361 B
Nix
|
{pkgs, ...}: {
|
||
|
services.podman.enable = true;
|
||
|
|
||
|
home.file.minikube = {
|
||
|
enable = true;
|
||
|
target = ".minikube/config/config.json";
|
||
|
text = ''
|
||
|
{
|
||
|
"container-runtime": "containerd",
|
||
|
"driver": "podman",
|
||
|
"rootless": true
|
||
|
}
|
||
|
'';
|
||
|
};
|
||
|
|
||
|
home.packages = with pkgs; [
|
||
|
minikube
|
||
|
kubectl
|
||
|
kubectx
|
||
|
k9s
|
||
|
];
|
||
|
}
|