nix-config/hosts/gnunet/default.nix

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

24 lines
363 B
Nix
Raw Normal View History

_:
2022-07-06 21:09:04 +02:00
{
2023-11-11 03:05:22 +01:00
c3d2 = {
deployment.server = "server10";
hq.statistics.enable = true;
};
2022-07-06 21:09:04 +02:00
2023-11-11 03:16:44 +01:00
# deployment.mem = 1024;
2022-07-06 21:09:04 +02:00
2023-06-05 19:56:03 +02:00
networking.hostName = "gnunet";
2022-07-06 21:09:04 +02:00
services.gnunet = {
enable = true;
load = {
# bits/s
maxNetDownBandwidth = 1000 * 1000 * 1000;
maxNetUpBandwidth = 1 * 1000 * 1000;
2022-07-07 00:32:02 +02:00
};
2022-07-06 21:09:04 +02:00
};
2023-11-11 03:05:22 +01:00
system.stateVersion = "22.05";
2022-07-06 21:09:04 +02:00
}