diff --git a/flake.nix b/flake.nix index ae83f010..7f777816 100644 --- a/flake.nix +++ b/flake.nix @@ -373,13 +373,6 @@ ]; }; - factorio = nixosSystem' { - modules = [ - self.nixosModules.microvm - ./hosts/factorio - ]; - }; - freifunk = nixosSystem' { modules = [ self.nixosModules.microvm diff --git a/hosts/factorio/default.nix b/hosts/factorio/default.nix deleted file mode 100644 index 79505994..00000000 --- a/hosts/factorio/default.nix +++ /dev/null @@ -1,27 +0,0 @@ -{ ... }: - -{ - c3d2.deployment.server = "server10"; - - microvm.mem = 8 * 1024; - - networking = { - hostName = "factorio"; - }; - - services = { - factorio = { - enable = true; - admins = [ "SuperSandro2000" ]; - autosave-interval = 10; - description = "Keep your Kolle Mate ready!"; - game-name = "C3D2 Server"; - game-password = "k-otk-ot"; - lan = true; - nonBlockingSaving = true; - openFirewall = true; - }; - }; - - system.stateVersion = "22.05"; -}