1
0
Fork 0

hosts/mail-2: enable docker

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

View File

@ -5,6 +5,8 @@
[
./hardware-configuration.nix
../../configuration/hetzner-cloud
./mailcow.nix
];
boot.loader.grub.enable = true;

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
];
}