29 lines
460 B
Nix
29 lines
460 B
Nix
{ pkgs, modulesPath, ... }: {
|
|
|
|
imports = [
|
|
../fediversity
|
|
(modulesPath + "/virtualisation/qemu-vm.nix")
|
|
];
|
|
|
|
fediversity = {
|
|
enable = true;
|
|
domain = "localhost";
|
|
pixelfed.enable = true;
|
|
};
|
|
|
|
services.pixelfed = {
|
|
settings = {
|
|
FORCE_HTTPS_URLS = false;
|
|
};
|
|
};
|
|
|
|
virtualisation.memorySize = 2048;
|
|
virtualisation.forwardPorts = [
|
|
{
|
|
from = "host";
|
|
host.port = 8000;
|
|
guest.port = 80;
|
|
}
|
|
];
|
|
}
|