mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-01-31 04:58:01 +00:00
hosts/ni/setups/development: replace Podman with Docker as container runtime
This commit is contained in:
parent
f0d59f6c97
commit
88858e6d34
@ -20,10 +20,22 @@ in
|
|||||||
neovim.enable = true;
|
neovim.enable = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
environment.systemPackages = with pkgs; [
|
# Replace container runtime to Docker.
|
||||||
# For debugging build environments in Nix packages.
|
virtualisation.podman.enable = lib.mkForce false;
|
||||||
cntr
|
virtualisation.docker = {
|
||||||
];
|
enable = true;
|
||||||
|
autoPrune = {
|
||||||
|
enable = true;
|
||||||
|
dates = "weekly";
|
||||||
|
};
|
||||||
|
logDriver = "journald";
|
||||||
|
};
|
||||||
|
|
||||||
|
environment.systemPackages = with pkgs;
|
||||||
|
[
|
||||||
|
# For debugging build environments in Nix packages.
|
||||||
|
cntr
|
||||||
|
];
|
||||||
|
|
||||||
# Enable the terminal emulator of choice.
|
# Enable the terminal emulator of choice.
|
||||||
programs.wezterm.enable = true;
|
programs.wezterm.enable = true;
|
||||||
|
Loading…
Reference in New Issue
Block a user