nix-config/hosts/gnunet/default.nix

20 lines
311 B
Nix

_:
{
system.stateVersion = "22.05";
c3d2.hq.statistics.enable = true;
deployment.mem = 1024;
networking.hostName = "gnunet";
services.gnunet = {
enable = true;
load = {
# bits/s
maxNetDownBandwidth = 1000 * 1000 * 1000;
maxNetUpBandwidth = 1 * 1000 * 1000;
};
};
}