profiles/dev: replace Docker with Podman

This commit is contained in:
Gabriel Arazas 2023-07-16 15:28:32 +08:00
parent 82dfc13a58
commit 22e07b8fa4
No known key found for this signature in database
GPG Key ID: ADE0C41DAB221FCC

View File

@ -132,13 +132,18 @@ in {
virt-manager # An interface for those who are lazy to read a reference manual and create a 1000-line configuration per machine. virt-manager # An interface for those who are lazy to read a reference manual and create a 1000-line configuration per machine.
]; ];
# Enable Docker just as my main container runtime or something. # Podman with Docker compatibility which is not 100% but still better
virtualisation.docker = { # than nothing.
virtualisation.podman = {
enable = true; enable = true;
dockerCompat = true;
autoPrune = { autoPrune = {
enable = true; enable = true;
dates = "weekly"; dates = "weekly";
}; };
defaultNetwork.settings = {
dns_enabled = true;
};
}; };
# Enable usual containers configuration. # Enable usual containers configuration.