nix-config/hosts/spaceapi/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
322 B
Nix
Raw Normal View History

2022-12-04 08:53:28 +01:00
_:
2021-09-10 00:21:38 +02:00
{
c3d2.deployment.server = "server10";
2022-06-16 21:38:53 +02:00
2023-06-05 22:09:07 +02:00
networking = {
firewall = {
allowedTCPPorts = [
3000 # spaceapi
];
allowedUDPPorts = [
25826 # spaceapi <- collectd
];
};
2023-06-05 22:09:07 +02:00
hostName = "spaceapi";
};
2019-09-10 22:05:03 +02:00
services.spaceapi.enable = true;
2019-09-10 22:05:03 +02:00
system.stateVersion = "19.03";
2019-09-10 22:05:03 +02:00
}