idk
This commit is contained in:
parent
f904bbb423
commit
5f64523982
8 changed files with 506 additions and 477 deletions
27
docker-kubernetes.nix
Normal file
27
docker-kubernetes.nix
Normal 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;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue