gnunet: move out of skyflake

This commit is contained in:
Sandro - 2023-11-11 03:05:22 +01:00
parent f2d2e39b12
commit 5ba1f198d4
Signed by: sandro
GPG Key ID: 3AF5A43A3EECC2E5
2 changed files with 7 additions and 2 deletions

View File

@ -391,6 +391,7 @@
gnunet = nixosSystem' {
modules = [
self.nixosModules.cluster-options
self.nixosModules.microvm
./hosts/gnunet
];
};

View File

@ -1,9 +1,11 @@
_:
{
system.stateVersion = "22.05";
c3d2 = {
deployment.server = "server10";
hq.statistics.enable = true;
};
c3d2.hq.statistics.enable = true;
deployment.mem = 1024;
networking.hostName = "gnunet";
@ -16,4 +18,6 @@ _:
maxNetUpBandwidth = 1 * 1000 * 1000;
};
};
system.stateVersion = "22.05";
}