forked from extern/nix-config
0577eb2dba
Docker significantly increases the boot time since it turns 4 seconds into 5.5. This fixes that.
11 lines
174 B
Nix
11 lines
174 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
virtualisation.docker.enable = true;
|
|
virtualisation.docker.enableOnBoot = false;
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
docker-compose
|
|
];
|
|
}
|