1
0

hosts/mail-2: enable docker

This commit is contained in:
2023-05-20 17:52:03 +02:00
parent 196fcf30a0
commit dd20c29c70
2 changed files with 12 additions and 0 deletions

10
hosts/mail-2/mailcow.nix Normal file
View File

@@ -0,0 +1,10 @@
{ pkgs, ... }:
{
virtualisation.docker.enable = true;
environment.systemPackages = with pkgs; [
docker-compose
openssl
];
}