Run the official Hytale Launcher on NixOS through a compatibility wrapper.
⚠️ Disclaimer
Not affiliated with, endorsed by, or associated with Hypixel Studios Canada Inc. This is an unofficial community-maintained compatibility wrapper.
NixOS doesn't provide the traditional Filesystem Hierarchy Standard (FHS) environment that most Linux applications expect. This flake creates an FHS-compatible sandbox that allows the official Hytale Launcher to run without modifications.
What this provides:
- FHS-compatible runtime environment
- Proper binary installation and version tracking
- Required system libraries (GTK, WebKit, graphics, audio)
What this does NOT do:
- Bypass authentication, DRM, or security systems
- Circumvent technical protections or anti-cheat systems
- Enable offline play, cracks, or unauthorized access
- Modify, decompile, or reverse engineer the launcher binary
- Provide mods, cheats, exploits, or unauthorized tools
- Redistribute Hytale binaries or game assets
- Platform:
x86_64-linux - Nix: Flakes enabled
- License: Must allow unfree packages (launcher is proprietary)
NIXPKGS_ALLOW_UNFREE=1 nix run --impure github:visoredkon/hytale-launcher-flakeNIXPKGS_ALLOW_UNFREE=1 nix build --impure github:visoredkon/hytale-launcher-flake
./result/bin/hytale-launcherThe launcher is proprietary software. Choose one method:
Option 1: System-wide
nixpkgs.config.allowUnfree = true;Option 2: Per-package (recommended)
nixpkgs.config.allowUnfreePredicate = pkg:
builtins.elem (lib.getName pkg) [ "hytale-launcher" ];flake.nix
{
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
hytale-launcher = {
url = "github:visoredkon/hytale-launcher-flake";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs = inputs@{ nixpkgs, ... }:
let
lib = nixpkgs.lib;
nixpkgsConfig = {
nixpkgs = {
overlays = [ inputs.hytale-launcher.overlays.default ];
config.allowUnfreePredicate = pkg:
builtins.elem (lib.getName pkg) [ "hytale-launcher" ];
};
};
in
{
nixosConfigurations.yourhost = lib.nixosSystem {
specialArgs = { inherit inputs; };
modules = [
nixpkgsConfig
./configuration.nix
];
};
};
}configuration.nix
{ pkgs, ... }:
{
environment.systemPackages = [ pkgs.hytale-launcher ];
}flake.nix
{
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
home-manager = {
url = "github:nix-community/home-manager";
inputs.nixpkgs.follows = "nixpkgs";
};
hytale-launcher = {
url = "github:visoredkon/hytale-launcher-flake";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs = inputs@{ nixpkgs, home-manager, ... }:
let
lib = nixpkgs.lib;
system = "x86_64-linux";
pkgs = nixpkgs.legacyPackages.${system};
nixpkgsConfig = {
nixpkgs = {
overlays = [ inputs.hytale-launcher.overlays.default ];
config.allowUnfreePredicate = pkg:
builtins.elem (lib.getName pkg) [ "hytale-launcher" ];
};
};
in
{
homeConfigurations.youruser = home-manager.lib.homeManagerConfiguration {
inherit pkgs;
extraSpecialArgs = { inherit inputs; };
modules = [
nixpkgsConfig
./home.nix
];
};
};
}home.nix
{ pkgs, ... }:
{
home.packages = [ pkgs.hytale-launcher ];
}Automated script to fetch the latest launcher from Hytale's API:
./update-version.sh # Preview changes
./update-version.sh --commit # Commit changes
./update-version.sh --push # Commit and pushThe script automatically:
- Fetches version and download URL from
https://launcher.hytale.com/version/release/launcher.json - Derives Flatpak URL from ZIP URL (replaces
.zipwith.flatpak) - Downloads and computes SHA-256 hash of Flatpak package
- Updates
versionandsha256in wrapper.nix - Formats files and updates flake.lock
- Creates conventional commit message (if
--commitflag is used)
nix developAvailable commands:
nix build- Build the packagenix fmt- Format Nix and shell filesnix flake check- Run build and format validation checks./update-version.sh- Update launcher version
./result/
├── bin/
│ └── hytale-launcher # FHS wrapper executable
├── lib/
│ └── hytale-launcher/
│ └── hytale-launcher # Unwrapped binary
└── share/
├── applications/
│ └── com.hypixel.HytaleLauncher.desktop
├── metainfo/
│ └── com.hypixel.HytaleLauncher.metainfo.xml
└── icons/hicolor/
├── 32x32/apps/
├── 48x48/apps/
├── 64x64/apps/
├── 128x128/apps/
└── 256x256/apps/
Available outputs:
packages.default- Full FHS wrapper (recommended)packages.hytale-launcher-unwrapped- Raw binary without FHSapps.default- Runnable application
If you encounter issues, check the log file at:
~/.local/share/Hytale/launcher-wrapper.logThe launcher binary is obtained from Hytale's official Flatpak builds:
- API Endpoint:
https://launcher.hytale.com/version/release/launcher.json - Distribution Format: Flatpak (undocumented, derived from
.zipURLs) - Extraction: Using OSTree to unpack Flatpak archives
- Verification: SHA-256 checksums computed with
nix-prefetch-url
The wrapper maintains launcher state in ~/.local/share/Hytale:
- Binary:
hytale-launcher(copied from Nix store) - Version file:
.bundled_version(tracks wrapper version) - Log file:
launcher-wrapper.log(error diagnostics)
Version updates trigger when:
- Binary doesn't exist or isn't executable
- Version file is missing
- Version mismatch between wrapper and binary
This wrapper is designed to respect Hytale's Terms of Service and EULA:
| Aspect | Implementation |
|---|---|
| Authentication | Handled entirely by official launcher. No credential interception. |
| Distribution | Only Nix code is distributed. Binaries downloaded directly from official sources. |
| Launcher Binary | Downloaded from launcher.hytale.com. SHA-256 checksums computed and pinned in wrapper.nix. |
| No Circumvention | No bypassing of technical protections, DRM, or anti-cheat systems. |
| No Modifications | Binary runs unmodified in FHS sandbox. No decompilation, reverse engineering, or code injection. |
Referenced: Terms of Service v2.2 & EULA v2.3 (Effective January 13, 2026)
This Repository: MIT License - Covers only the Nix expressions and shell scripts.
Hytale Launcher: Proprietary software governed by Hytale's EULA.
Hytale® and Hypixel Studios® are trademarks of Hypixel Studios Canada Inc. Used for identification purposes only.
This software is provided "as is", without warranty of any kind. Users must ensure their use complies with applicable terms and local laws.