stream: start to move out of skyflake

This commit is contained in:
Sandro - 2023-11-11 04:23:03 +01:00
parent a4171bb3f0
commit 8d84606f2a
Signed by: sandro
GPG Key ID: 3AF5A43A3EECC2E5
2 changed files with 15 additions and 3 deletions

View File

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

View File

@ -1,12 +1,23 @@
{ zentralwerk, config, hostRegistry, lib, pkgs, ... }:
{ zentralwerk, config, hostRegistry, lib, ... }:
{
networking.hostName = "stream";
c3d2.hq.statistics.enable = true;
deployment = {
c3d2 = {
deployment.server = "server10";
hq.statistics.enable = true;
};
microvm = {
autoNetSetup = false;
mem = 6144;
networks = lib.mkForce [ "pub" "serv" ];
};
# deployment = {
# mem = 6144;
# networks = lib.mkForce [ "pub" "serv" ];
# };
systemd.network = {
enable = true;