forked from Fediversity/Fediversity
Valentin Gagarin
c6cc92f5dc
git-subtree-dir: services git-subtree-mainline:e41e0daa82
git-subtree-split:a13b1e9372
25 lines
532 B
Nix
25 lines
532 B
Nix
{ pkgs, modulesPath, ... }: {
|
|
|
|
imports = [ (modulesPath + "/virtualisation/qemu-vm.nix") ];
|
|
|
|
services.peertube = {
|
|
enableWebHttps = false;
|
|
settings = {
|
|
listen.hostname = "0.0.0.0";
|
|
instance.name = "PeerTube Test VM";
|
|
};
|
|
# TODO: use agenix
|
|
secrets.secretsFile = pkgs.writeText "secret" ''
|
|
574e093907d1157ac0f8e760a6deb1035402003af5763135bae9cbd6abe32b24
|
|
'';
|
|
};
|
|
|
|
virtualisation.forwardPorts = [
|
|
{
|
|
from = "host";
|
|
host.port = 9000;
|
|
guest.port = 9000;
|
|
}
|
|
];
|
|
}
|