sbc-deploys/modules/docker/default.nix

8 lines
129 B
Nix
Raw Normal View History

{ pkgs, ... }:
{
2023-05-08 18:43:41 +00:00
environment.systemPackages = with pkgs; [ docker docker-compose ];
virtualisation.docker.enable = true;
}