mirror of
https://gitlab.com/simple-nixos-mailserver/nixos-mailserver.git
synced 2024-11-13 20:38:33 +05:00
10 lines
255 B
Nix
10 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;
|
||
|
};
|
||
|
}
|