8 lines
127 B
Nix
Executable file
8 lines
127 B
Nix
Executable file
{ pkgs, ... }:
|
|
{
|
|
virtualisation.docker.enable = true;
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
docker-compose
|
|
];
|
|
}
|