aboutsummaryrefslogtreecommitdiff
path: root/nixos/modules/services/games/minecraft-server.nix (follow)
Commit message (Collapse)AuthorAgeFilesLines
* nixos/modules: Replace all nested types.either's with types.oneOf'sSilvan Mosberger2019-08-081-1/+1
|
* treewide: Remove usage of isNullDaniel Schaefer2019-04-291-2/+2
| | | | isNull "is deprecated; just write e == null instead" says the Nix manual
* nixos/mincraft-server: refactorChris Ostrouchov2019-02-031-20/+181
| | | | | | | | | | | | | | | | | | | | | | | - allow for options to (added 2 options): - agree to eula (eula.txt) true/false will create symlink over existing eula.txt to `/nix/store/...`. - whitelist users (optional and will symlink over existing whitelist.json and create backup) - server.properties can be configured with the serverProperties option. If there is an existing server.properties it will copy it to a server.properties.old to keep the old one. server.properties MUST be writable thus symlinking is not an option. - all ports that are stated in `server.properties` are exposed properly in the firewall. (infinisil) nixos/minecraft-server: Fix, refactor and polish Adds an option `declarative` (defaulted to false), in order to stay (mostly) backwards compatible. The only thing that's not backwards compatible is that you now need to agree to the EULA on evaluation time, but that's guarded by an assertion and therefore doesn't need a release note.
* nixos/modules: users.(extraUsers|extraGroup->users|group)Florian Klink2018-06-301-1/+1
|
* allow changing minecraft data dir + allow opening firewallOliver Matthews2015-04-071-3/+25
|
* Rewrite ‘with pkgs.lib’ -> ‘with lib’Eelco Dolstra2014-04-141-2/+2
| | | | | | | | Using pkgs.lib on the spine of module evaluation is problematic because the pkgs argument depends on the result of module evaluation. To prevent an infinite recursion, pkgs and some of the modules are evaluated twice, which is inefficient. Using ‘with lib’ prevents this problem.
* nixos: add minecraft-server serviceAustin Seipp2014-03-291-0/+51
Signed-off-by: Austin Seipp <aseipp@pobox.com>