mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-11-23 00:34:24 +01:00
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
|
|
];
|
|
}
|