9 lines
224 B
Nix
9 lines
224 B
Nix
{ config, pkgs, lib, inputs, ... }:
|
|
{
|
|
virtualisation.docker.enable = true;
|
|
virtualisation.docker.daemon.settings = { ip = "127.0.0.1"; };
|
|
environment.systemPackages = with pkgs; [
|
|
docker-compose
|
|
];
|
|
}
|