Skip to content

Releases: HexGuard-Security/ThingNix

ThingNix v0.1.0

04 Apr 20:08

Choose a tag to compare

A reproducible NixOS-based operating system for IoT penetration testing and hardware hacking.

Changes in this release

This is the first official release of ThingNix, featuring:

  • NixOS 23.11 base system
  • Core security and networking tools
  • XFCE desktop environment
  • Hardware hacking capabilities

ISO Download

The ISO file has been split into multiple parts due to GitHub's file size limitations.

  1. Download all the ISO parts (thingnix-x86_64.iso.part-*)
  2. Download the reassemble.sh script
  3. Place all files in the same directory
  4. Run the reassemble script:
    chmod +x reassemble.sh
    ./reassemble.sh
    
  5. Verify the ISO with:
    sha256sum -c thingnix-x86_64.sha256
    

Alternatively, you can build it locally:

# Clone the repository
git clone https://github.com/HexGuard-Security/ThingNix.git
cd ThingNix

# Checkout this release
git checkout v0.1.0-release3

# Build the ISO (requires Nix with flakes enabled)
nix build .#packages.x86_64-linux.iso

# The ISO will be available at ./result

Note on aarch64 support

aarch64 builds are temporarily disabled and will be enabled in a future release.