Compare commits

..

No commits in common. "af10b49f39133efb4941c313638769581fe2cf1c" and "cd1736f899f03e36aaf13df5ab7196f4b031cedc" have entirely different histories.

2 changed files with 35 additions and 11 deletions

View file

@ -8,17 +8,47 @@ in {
kubectl
pwgen
whois
unstable.argocd
unstable.kubernetes-helm
unstable.kustomize
unstable.vault
podman-compose
# podman
conmon
fuse-overlayfs
podman
podman-compose
runc
slirp4netns
];
virtualisation.podman = {
enable = true;
dockerCompat = true;
users.users.stefan.subUidRanges = [{ startUid = 100000; count = 65536; }];
users.users.stefan.subGidRanges = [{ startGid = 100000; count = 65536; }];
environment.etc."containers/policy.json" = {
mode="0644";
text=''
{
"default": [
{
"type": "insecureAcceptAnything"
}
],
"transports":
{
"docker-daemon":
{
"": [{"type":"insecureAcceptAnything"}]
}
}
}
'';
};
environment.etc."containers/registries.conf" = {
mode="0644";
text=''
[registries.search]
registries = ['docker.io', 'quay.io']
'';
};
}

View file

@ -98,10 +98,4 @@ in {
services.resolved.enable = true;
services.lorri.enable = true;
services.zfs.autoSnapshot = {
enable = true;
frequent = 8;
monthly = 6;
};
}