Skip to content
Discussion options

You must be logged in to vote

Currently Tuwunel is not in Nixpkgs repository. The packaging request is here.

However you can use flake.nix from Tuwunel repository as your flake input and use package defined in Tuwunel's flake.nix.

How to use Tuwunel package defined in flake.nix in Tuwunel repository:

# flake.nix
{
  description = "...";

  inputs = {
    nixpkgs.url = "github:nixos/nixpkgs/nixos-25.05";
    tuwunel.url = "github:matrix-construct/tuwunel/v1.0.0";
  };

  outputs = { self, nixpkgs, tuwunel, ... }@inputs:
  {
    # your configuration...
  };
# configuration.nix
{ tuwunel, ... }:
{
  systemd.services."tuwunel" = {
    description = "Tuwunel Matrix server";
    wants = [ "network-online.target" ];
    after =

Replies: 2 comments 1 reply

Comment options

You must be logged in to vote
1 reply
@zoenglinghou
Comment options

Answer selected by zoenglinghou
Comment options

You must be logged in to vote
0 replies
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
3 participants