Tau

Remote sharing of terminal sessions

Declared in: projects/Tau/default.nix

Demo

Implement missing demo

Examples

Enable tau-radio
{ pkgs, ... }:

{
  programs.tau-radio = {
    enable = true;
    settings = {
      username = "alice";
    };
    # WARN: Don't use this in production as it will copy the file to the
    # Nix store. Instead, provide a string that contains an absolute path
    # to a file that already exists on disk.
    passwordFile = pkgs.writeText "password.txt" "superSecretPassword";
  };
}

Declared in: projects/Tau/programs/tau-radio/examples/basic.nix

Enable tau-tower
{ pkgs, ... }:

{
  services.tau-tower = {
    enable = true;
    settings = {
      username = "alice";
    };
    # WARN: Don't use this in production as it will copy the file to the
    # Nix store. Instead, provide a string that contains an absolute path
    # to a file that already exists on disk.
    passwordFile = pkgs.writeText "password.txt" "superSecretPassword";
  };
}

Declared in: projects/Tau/services/tau-tower/examples/basic.nix

This project is funded by NLnet through these subgrants:

Core
Tau

Related links: