https://github.com/cm-360/craftland-nix
Nix flake for the Craftland Aether server's launcher
https://github.com/cm-360/craftland-nix
aether craftland minecraft nix nix-flake
Last synced: about 1 month ago
JSON representation
Nix flake for the Craftland Aether server's launcher
- Host: GitHub
- URL: https://github.com/cm-360/craftland-nix
- Owner: cm-360
- License: mit
- Created: 2025-11-04T06:34:59.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2026-04-20T02:41:11.000Z (4 months ago)
- Last Synced: 2026-04-20T04:42:42.843Z (4 months ago)
- Topics: aether, craftland, minecraft, nix, nix-flake
- Language: Nix
- Homepage:
- Size: 6.84 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Craftland Launcher Flake
This is an **unofficial** Nix flake packaging the [Craftland](https://craftland.org/) modded Aether server's launcher. The provided package wraps the original launcher files from the website with a suitable Java 17 runtime and some necessary libraries.
## Usage
Start by adding this repository to your inputs in `flake.nix`:
```nix
inputs = {
craftland-nix.url = "github:cm-360/craftland-nix";
...
};
```
This flake provides only a single package: `craftland-launcher`. The recommended way to install it is by applying the provided overlay:
```nix
overlays = [
inputs.craftland-nix.overlays.default
];
```
The package would then be accessible via `pkgs.craftland-launcher`. More information about using overlays is available on the [NixOS Wiki](https://nixos.wiki/wiki/Overlays).
Alternatively, you can directly list the package in either `environment.systemPackages` or `home.packages` with the following:
```nix
inputs.craftland-nix.packages."${system}".default
```