Nicolas Jeannerod
e9b5de893d
Co-authored-by: Taeer Bar-Yam <taeer.bar-yam@moduscreate.com> Co-authored-by: Valentin Gagarin <valentin.gagarin@tweag.io> Reviewed-on: Fediversity/simple-nixos-fediverse#26 Co-authored-by: Nicolas “Niols” Jeannerod <nicolas.jeannerod@moduscreate.com> Co-committed-by: Nicolas “Niols” Jeannerod <nicolas.jeannerod@moduscreate.com>
30 lines
630 B
Nix
30 lines
630 B
Nix
{ lib, config, modulesPath, ... }:
|
|
|
|
let
|
|
inherit (lib) mkVMOverride;
|
|
|
|
fedicfg = config.fediversity.internal.garage;
|
|
|
|
in {
|
|
imports = [ (modulesPath + "/virtualisation/qemu-vm.nix") ];
|
|
|
|
services.nginx.virtualHosts.${fedicfg.web.rootDomain} = {
|
|
forceSSL = mkVMOverride false;
|
|
enableACME = mkVMOverride false;
|
|
};
|
|
|
|
virtualisation.diskSize = 2048;
|
|
virtualisation.forwardPorts = [
|
|
{
|
|
from = "host";
|
|
host.port = fedicfg.rpc.port;
|
|
guest.port = fedicfg.rpc.port;
|
|
}
|
|
{
|
|
from = "host";
|
|
host.port = fedicfg.web.internalPort;
|
|
guest.port = fedicfg.web.internalPort;
|
|
}
|
|
];
|
|
}
|