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

This commit is contained in:
yuri 2023-07-18 17:23:46 +02:00
parent 8eb9538485
commit e8afd2b667
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;
};
}