Commit e67728176dec
Changed files (2)
systems
hosts
modules
profiles
systems/hosts/aomi.nix
@@ -102,6 +102,7 @@ in
virtualization = { enable = true; nested = true; };
redhat.enable = true;
ssh.enable = true;
+ docker.enable = true;
};
systems/modules/profiles/docker.nix
@@ -22,15 +22,15 @@ in
};
config = mkIf cfg.enable {
virtualisation = {
- mycontainerd = {
+ containerd = {
enable = true;
# autostart = false;
};
- buildkitd = {
- enable = true;
- autostart = false;
- extraOptions = "--oci-worker=false --containerd-worker=true";
- };
+ # buildkitd = {
+ # enable = true;
+ # autostart = false;
+ # extraOptions = "--oci-worker=false --containerd-worker=true";
+ # };
docker = {
enable = true;
package = cfg.package;