Compare commits
3 Commits
f5c0934933
...
0d6653ed9b
Author | SHA1 | Date | |
---|---|---|---|
0d6653ed9b | |||
ed36d650af | |||
c1b4370bac |
@ -27,7 +27,7 @@ in
|
||||
ignoreCollisions = true;
|
||||
};
|
||||
in "${pkgs.writeShellScriptBin "run.sh" ''
|
||||
${env}/bin/python ${pkgs.writeScript "pr-autobot.py" "${readFile ./pr-autobot.py}"} --private-key /var/lib/auto-pr-bot/private-key.pem --app-id 19565 --installation-id 407088 --repo nyanloutre/nixpkgs --cache-dir /var/cache/auto-pr-bot --version 19.03
|
||||
${env}/bin/python ${pkgs.writeScript "pr-autobot.py" "${readFile ./pr-autobot.py}"} --private-key /var/lib/auto-pr-bot/private-key.pem --app-id 19565 --installation-id 407088 --repo nyanloutre/nixpkgs --cache-dir /var/cache/auto-pr-bot --version 19.09
|
||||
''}/bin/run.sh";
|
||||
};
|
||||
};
|
||||
|
@ -83,6 +83,7 @@ in
|
||||
internalInterfaces = [ "eno2" ];
|
||||
forwardPorts = [
|
||||
{ destination = "10.30.0.1:22"; proto = "tcp"; sourcePort = 8443;}
|
||||
{ destination = "10.30.135.35:25565"; proto = "tcp"; sourcePort = 25565; loopbackIPs=[ "195.36.180.44" ];}
|
||||
];
|
||||
};
|
||||
|
||||
@ -109,6 +110,7 @@ in
|
||||
machines = [
|
||||
{ ethernetAddress = "50:c7:bf:b6:b8:ef"; hostName = "HS110"; ipAddress = "10.30.50.7"; }
|
||||
{ ethernetAddress = "ac:1f:6b:4b:01:15"; hostName = "IPMI"; ipAddress = "10.30.1.1"; }
|
||||
{ ethernetAddress = "00:1f:c6:6e:d1:f1"; hostName = "minecraftos"; ipAddress = "10.30.135.35"; }
|
||||
];
|
||||
extraConfig = ''
|
||||
option domain-name-servers 89.234.141.66, 80.67.169.12, 80.67.169.40;
|
||||
|
@ -142,6 +142,11 @@
|
||||
fsType = "zfs";
|
||||
};
|
||||
|
||||
fileSystems."/var/lib/minecraft" =
|
||||
{ device = "loutrepool/var/minecraft";
|
||||
fsType = "zfs";
|
||||
};
|
||||
|
||||
swapDevices =
|
||||
[
|
||||
{
|
||||
|
@ -211,6 +211,7 @@ in
|
||||
exports = ''
|
||||
/mnt/medias 10.30.0.0/16(ro,no_root_squash)
|
||||
/exports/steam 10.30.0.0/16(rw,async,no_root_squash)
|
||||
/var/lib/minecraft 10.30.0.0/16(rw,no_root_squash)
|
||||
'';
|
||||
statdPort = 4000;
|
||||
lockdPort = 4001;
|
||||
@ -456,7 +457,7 @@ in
|
||||
};
|
||||
|
||||
minecraft-server = {
|
||||
enable = true;
|
||||
enable = false;
|
||||
jvmOpts = "-Xms512m -Xmx3072m";
|
||||
eula = true;
|
||||
declarative = true;
|
||||
|
@ -17,6 +17,7 @@
|
||||
gitFull
|
||||
tig
|
||||
gitAndTools.hub
|
||||
quilt
|
||||
|
||||
# Gestion de paquets
|
||||
nix-prefetch-scripts
|
||||
|
Loading…
Reference in New Issue
Block a user