Compare commits

...

3 commits

Author SHA1 Message Date
af10b49f39 add zfs auto snapshop 2020-11-03 17:48:17 +01:00
b44f659e96 update podman config for 20.09 2020-11-03 17:47:39 +01:00
3304bb3533 add argocd 2020-11-03 17:47:18 +01:00
2 changed files with 11 additions and 35 deletions

View file

@ -8,47 +8,17 @@ in {
kubectl
pwgen
whois
unstable.argocd
unstable.kubernetes-helm
unstable.kustomize
unstable.vault
# podman
conmon
fuse-overlayfs
podman
podman-compose
runc
slirp4netns
fuse-overlayfs
];
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']
'';
virtualisation.podman = {
enable = true;
dockerCompat = true;
};
}

View file

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