This commit is contained in:
Clayton Hickey 2025-10-06 13:42:39 -04:00
parent f904bbb423
commit 5f64523982
8 changed files with 506 additions and 477 deletions

27
docker-kubernetes.nix Normal file
View file

@ -0,0 +1,27 @@
{ pkgs, ... }: {
virtualisation = {
docker = {
enable = true;
rootless = {
enable = true;
setSocketVariable = true;
};
};
# For kubernetes
containerd = {
enable = true;
};
};
environment.systemPackages = with pkgs; [
# For pennlabs
kind
kubectl
awscli2
k9s
];
environment.sessionVariables = {
CONTAINERD_ENABLE_DEPRECATED_PULL_SCHEMA_1_IMAGE = 1;
};
}