Work on hydra config, fix tor relay config, prepare web-public-2 host

This commit is contained in:
fi 2024-11-20 05:46:39 +01:00
parent 8de4bc39aa
commit 2daeaae0d1
15 changed files with 176 additions and 9 deletions

View file

@ -0,0 +1,14 @@
{ ... }:
{
boot.loader.grub = {
enable = true;
device = "/dev/vda";
};
networking = {
hostName = "web-public-02";
firewall.enable = false;
};
system.stateVersion = "23.05";
}

View file

@ -0,0 +1,7 @@
{ ... }:
{
imports = [
./configuration.nix
./nginx.nix
];
}

View file

@ -0,0 +1,6 @@
{ ... }:
{
services.nginx = {
enable = true;
};
}