Compare commits

...

2 commits

Author SHA1 Message Date
Raito Bezarius
6eec25d2bb epyc: let authentication remote 2023-08-22 21:17:36 +02:00
Raito Bezarius
69aac159fa epyc: open postgresql publicly 2023-08-22 21:17:36 +02:00

View file

@ -17,6 +17,13 @@ in
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
# Open public access to our PostgreSQL.
services.postgresql.enableTCPIP = true;
services.postgresql.authentication = ''
host hydra-nixos-org hydra_ro ::/0 trust
'';
networking.firewall.allowedTCPPorts = [ 5432 ];
virtualisation.nvisor.vms = {
vm01 = {
config = { pkgs, ... }: {