Compare commits
No commits in common. "a1be8c31ace3877db4771dc18c7b25d3e6536f78" and "1bae1d1b33a18846a48b4e46344a98a4ac2e854e" have entirely different histories.
a1be8c31ac
...
1bae1d1b33
@ -131,10 +131,6 @@
|
|||||||
host = "minecraft-1.net.clerie.de";
|
host = "minecraft-1.net.clerie.de";
|
||||||
port = 25568;
|
port = 25568;
|
||||||
};
|
};
|
||||||
tcpPorts."25569" = {
|
|
||||||
host = "minecraft-2.net.clerie.de";
|
|
||||||
port = 25565;
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
|
|
||||||
clerie.gre-tunnel = {
|
clerie.gre-tunnel = {
|
||||||
|
@ -1,42 +0,0 @@
|
|||||||
{ config, pkgs, lib, ... }:
|
|
||||||
|
|
||||||
with lib;
|
|
||||||
|
|
||||||
let
|
|
||||||
eulaFile = builtins.toFile "eula.txt" ''
|
|
||||||
# eula.txt managed by NixOS Configuration
|
|
||||||
eula=true
|
|
||||||
'';
|
|
||||||
in {
|
|
||||||
imports =
|
|
||||||
[
|
|
||||||
./hardware-configuration.nix
|
|
||||||
../../configuration/common
|
|
||||||
../../configuration/proxmox-vm
|
|
||||||
];
|
|
||||||
|
|
||||||
boot.loader.grub.enable = true;
|
|
||||||
boot.loader.grub.version = 2;
|
|
||||||
boot.loader.grub.device = "/dev/sda";
|
|
||||||
|
|
||||||
networking.hostName = "minecraft-2";
|
|
||||||
|
|
||||||
networking.useDHCP = false;
|
|
||||||
networking.interfaces.ens19.ipv4.addresses = [ { address = "192.168.10.31"; prefixLength = 24; } ];
|
|
||||||
networking.interfaces.ens18.ipv6.addresses = [ { address = "2001:638:904:ffcb::9"; prefixLength = 64; } ];
|
|
||||||
networking.defaultGateway = { address = "192.168.10.1"; interface = "ens19"; };
|
|
||||||
networking.defaultGateway6 = { address = "2001:638:904:ffcb::1"; interface = "ens18"; };
|
|
||||||
networking.nameservers = [ "2001:638:904:ffcc::3" "2001:638:904:ffcc::4" "141.24.40.3" "141.24.40.4" ];
|
|
||||||
|
|
||||||
services.minecraft-server = {
|
|
||||||
enable = true;
|
|
||||||
eula = true;
|
|
||||||
dataDir = "/var/lib/minecraft-server";
|
|
||||||
jvmOpts = "-Xmx4G -Xms1G";
|
|
||||||
};
|
|
||||||
|
|
||||||
networking.firewall.allowedUDPPorts = [ 25565 ];
|
|
||||||
networking.firewall.allowedTCPPorts = [ 25565 ];
|
|
||||||
|
|
||||||
system.stateVersion = "21.03";
|
|
||||||
}
|
|
@ -1,23 +0,0 @@
|
|||||||
# Do not modify this file! It was generated by ‘nixos-generate-config’
|
|
||||||
# and may be overwritten by future invocations. Please make changes
|
|
||||||
# to /etc/nixos/configuration.nix instead.
|
|
||||||
{ config, lib, pkgs, modulesPath, ... }:
|
|
||||||
|
|
||||||
{
|
|
||||||
imports =
|
|
||||||
[ (modulesPath + "/profiles/qemu-guest.nix")
|
|
||||||
];
|
|
||||||
|
|
||||||
boot.initrd.availableKernelModules = [ "ata_piix" "uhci_hcd" "virtio_pci" "virtio_scsi" "sd_mod" "sr_mod" ];
|
|
||||||
boot.initrd.kernelModules = [ ];
|
|
||||||
boot.kernelModules = [ ];
|
|
||||||
boot.extraModulePackages = [ ];
|
|
||||||
|
|
||||||
fileSystems."/" =
|
|
||||||
{ device = "/dev/disk/by-uuid/472ace36-d152-4139-9ea8-76f104e619d3";
|
|
||||||
fsType = "ext4";
|
|
||||||
};
|
|
||||||
|
|
||||||
swapDevices = [ ];
|
|
||||||
|
|
||||||
}
|
|
Loading…
Reference in New Issue
Block a user