1
0
forked from extern/nix-config
donovanglover-nix-config/modules/docker.nix
Donovan Glover 0577eb2dba
docker: Don't enable on boot
Docker significantly increases the boot time since it turns 4 seconds
into 5.5. This fixes that.
2023-10-25 13:29:20 -04:00

11 lines
174 B
Nix

{ pkgs, ... }:
{
virtualisation.docker.enable = true;
virtualisation.docker.enableOnBoot = false;
environment.systemPackages = with pkgs; [
docker-compose
];
}