mirror of
https://gitlab.com/simple-nixos-mailserver/nixos-mailserver.git
synced 2024-12-26 15:06:14 +01:00
9 lines
255 B
Nix
9 lines
255 B
Nix
{
|
|
mailserver =
|
|
{ config, pkgs, ... }:
|
|
{ deployment.targetEnv = "virtualbox";
|
|
deployment.virtualbox.memorySize = 1024; # megabytes
|
|
deployment.virtualbox.vcpu = 2; # number of cpus
|
|
deployment.virtualbox.headless = true;
|
|
};
|
|
}
|