nix-infra/config/hosts/searx/configuration.nix
2023-11-09 23:10:53 +01:00

18 lines
248 B
Nix

{ ... }:
{
boot.loader.grub = {
enable = true;
device = "/dev/vda";
};
networking = {
hostName = "searx";
firewall = {
enable = true;
allowedTCPPorts = [ 80 8443 ];
};
};
system.stateVersion = "23.05";
}