1
0
forked from extern/nix-config
donovanglover-nix-config/modules/docker.nix

10 lines
128 B
Nix
Raw Normal View History

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