mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-01-30 22:57:55 +00:00
hosts/ni/setups/development: replace Podman with Docker as container runtime
This commit is contained in:
parent
f0d59f6c97
commit
88858e6d34
@ -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
|
||||
];
|
||||
|
Loading…
Reference in New Issue
Block a user