Skip to content

Installation

You can download the client from GitHub or directly from the Homepage. For linux we have .deb and .rpm files on github, two AUR packages and a Nix Flake.

This includes these distros

  • paru -S tensamin-bin
  • paru -S tensamin-git
Terminal window
git clone https://aur.archlinux.org/tensamin-bin
cd tensamin-bin
makepkg -si
Terminal window
git clone https://aur.archlinux.org/tensamin-git
cd tensamin-git
makepkg -si

flake.nix

{
# ...
inputs = {
tensamin.url = "github:Tensamin/Frontend";
# ...
};
outputs = {
tensamin,
# ...
}:
# ...
}

configuration.nix

{ }: {
# ...
environment.systemPackages = [
inputs.tensamin.packages.${pkgs.system}.default
];
# ...
}

You can download the Iota from GitHub. We also provide a Docker container and a Nix Flake.

Using docker run

Terminal window
docker run tensamin/iota:latest

or using Docker Compose

services:
app:
container_name: iota
image: tensamin/iota:latest
ports:
- "1984:1984" # Needed for communties and web ui
volumes:
- data:/app
- ./users.json:/app/users.json
- ./config.json:/app/config.json
volumes:
data:

Not available yet!

services.iota = {
enable = true;
id = "<uuid>";
users = [
"<uuid>"
];
};
Terminal window
git clone https://github.com/Tensamin/Iota
cd Iota
cargo build --release
./target/release/iota