hosts/ni/setups/development: replace Podman with Docker as container runtime

This commit is contained in:
Gabriel Arazas 2024-10-27 11:40:13 +08:00
parent f0d59f6c97
commit 88858e6d34
No known key found for this signature in database
GPG Key ID: 62104B43D00AA360

View File

@ -20,7 +20,19 @@ in
neovim.enable = true;
};
environment.systemPackages = with pkgs; [
# Replace container runtime to Docker.
virtualisation.podman.enable = lib.mkForce false;
virtualisation.docker = {
enable = true;
autoPrune = {
enable = true;
dates = "weekly";
};
logDriver = "journald";
};
environment.systemPackages = with pkgs;
[
# For debugging build environments in Nix packages.
cntr
];