mirror of
https://forge.katzen.cafe/schrottkatze/nix-configs.git
synced 2024-11-05 15:16:23 +01:00
serverrr
This commit is contained in:
parent
18a9b51b9a
commit
1d47a987bb
|
@ -12,6 +12,7 @@
|
||||||
url = "path:./mac-brcm-fw";
|
url = "path:./mac-brcm-fw";
|
||||||
flake = false;
|
flake = false;
|
||||||
};
|
};
|
||||||
|
mms.url = "github:mkaito/nixos-modded-minecraft-servers";
|
||||||
};
|
};
|
||||||
|
|
||||||
outputs = { self, nixpkgs, home-manager, nixos-hardware, mac-brcm-fw, ... }: {
|
outputs = { self, nixpkgs, home-manager, nixos-hardware, mac-brcm-fw, ... }: {
|
||||||
|
|
|
@ -1,10 +1,11 @@
|
||||||
{ config, pkgs, ... }:
|
{ inputs, config, pkgs, ... }:
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
# ./t2.nix
|
# ./t2.nix
|
||||||
# "${builtins.fetchGit { url = "https://github.com/kekrby/nixos-hardware.git"; }}/apple/t2"
|
# "${builtins.fetchGit { url = "https://github.com/kekrby/nixos-hardware.git"; }}/apple/t2"
|
||||||
./hardware-configuration.nix
|
./hardware-configuration.nix
|
||||||
../common.nix
|
../common.nix
|
||||||
|
inputs.mms.module
|
||||||
];
|
];
|
||||||
|
|
||||||
# boot.supportedFilesystems = pkgs.lib.mkForce [ "ext4" "btrfs" "squashfs" ];
|
# boot.supportedFilesystems = pkgs.lib.mkForce [ "ext4" "btrfs" "squashfs" ];
|
||||||
|
@ -98,6 +99,27 @@
|
||||||
# networking.firewall.allowedTCPPorts = [ 4713 ];
|
# networking.firewall.allowedTCPPorts = [ 4713 ];
|
||||||
systemd.services."NetworkManager-wait-online".enable = false;
|
systemd.services."NetworkManager-wait-online".enable = false;
|
||||||
|
|
||||||
|
services.modded-minecraft-servers = {
|
||||||
|
# This is mandatory, sorry.
|
||||||
|
eula = true;
|
||||||
|
|
||||||
|
# The name will be used for the state folder and system user.
|
||||||
|
# In this case, the folder is `/var/lib/mc-e2es`
|
||||||
|
# and the user `mc-e2es`.
|
||||||
|
instances = {
|
||||||
|
standard-server = {
|
||||||
|
enable = true;
|
||||||
|
jvmMaxAllocation = "7G";
|
||||||
|
jvmInitialAllocation = "2G";
|
||||||
|
serverConfig = {
|
||||||
|
# Port must be unique
|
||||||
|
server-port = 8080;
|
||||||
|
motd = "Hello world";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
# i rly should put that important big comment back here
|
# i rly should put that important big comment back here
|
||||||
system.stateVersion = "22.11"; # Did you read the comment?
|
system.stateVersion = "22.11"; # Did you read the comment?
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue