~1150 feat/fix commits landed since v0.19 and the docs drifted badly. This is a full sweep of every page against the code as shipped: ~280 verified corrections, nine new pages, and one deletion. The worst of what was wrong: the quickstart's five-minute path could not work (`serve` never started the web console, so step 3 had no PIN to read); every packaged Linux host runs `serve --gamestream` while security.md told readers to leave GameStream off; HDR was documented as Windows-only; `PUNKTFUNK_SECURE_DDA` was documented as a working knob that nothing reads; `PUNKTFUNK_INPUT_BACKEND` listed a `uinput` value that does not exist and named libei for KDE instead of kwin; README linked three pages deleted on 2026-07-05; and the rpm-ostree update command pointed at a script no package installs. Completeness: about half of what shipped since v0.19 had no page at all. New: support-matrix (what works where, from 217 verified capability cells), input (mouse/touch/pen — and the in-stream chords, so the docs finally say how to get your mouse back), client-settings, profiles-and-links, game-library, clipboard, wake-on-lan, hdr, uninstall. Updating existed but had zero inbound links. status.md is gone: its facts moved into the support matrix, its shell stays as a redirect so the public URL does not 404. roadmap.md is themes now, not a feature checklist — checkboxes are what rotted. Debian is no longer claimed. The .deb's Depends resolve against Ubuntu images, nothing in CI builds or tests Debian, and Debian 12 is below the glibc 2.39 floor. The `debian` in the repo URL is the package format. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
12 KiB
title, description
| title | description |
|---|---|
| Install the Host | Install the Punktfunk host — on Linux from its package registry, or on Windows from a signed installer. |
On Linux, the package registries are the real distribution channel. Pick your distro, add the repo, and install with your native package manager. Each row links to the full per-distro guide (add the repo, first-run steps, the web console) — those are the source of truth, so this page doesn't duplicate them. On Windows, the host ships as a signed installer instead — see Windows.
First, read Security & Safe Use. A streaming host is remote control of the machine. It's built for trusted local networks — don't expose it to the internet, and be thoughtful about which machine you host on (especially on Windows).
Pick your distro
| Distro | Package manager | One-command happy path | Guide |
|---|---|---|---|
| Ubuntu | apt | sudo apt install punktfunk-host |
Ubuntu · packaging/debian |
| Bazzite / Fedora Atomic | systemd-sysext | curl -fsSLO https://git.unom.io/unom/punktfunk/raw/branch/main/packaging/bazzite/punktfunk-sysext.sh && sudo bash punktfunk-sysext.sh install (no layering, no reboot) |
Bazzite · packaging/bazzite |
| Fedora (dnf) | dnf / rpm-ostree | sudo dnf install punktfunk |
Fedora · packaging/rpm |
| Arch | pacman | sudo pacman -Syu punktfunk-host (binary repo — always a full -Syu, never -Sy) |
Arch Linux · packaging/arch |
| SteamOS (host) | on-device script | clone the repo, then bash ~/punktfunk/scripts/steamdeck/install.sh (builds on-device) |
SteamOS (Host) |
| NixOS / Nix | nix flake | nix run git+https://git.unom.io/unom/punktfunk#punktfunk-host -- serve --gamestream |
NixOS · packaging/nix |
Each registry is public — no auth, you just trust the repo's signing key. Adding the repo is a
one-time step covered in the linked guide; after that, normal apt upgrade / dnf upgrade /
pacman -Syu (or sudo punktfunk-sysext update on Bazzite) tracks new builds. On NixOS there
is no repo to add — you add the flake as an input and enable its module, see NixOS.
Stable vs canary. The repos in the per-distro guides are the stable channel — it only moves when a
vX.Y.Zrelease is cut. For the latestmainbuild (fast, possibly broken), point at the canary channel instead (canaryapt distribution /*-canaryrpm group). See Release Channels.
Windows
Punktfunk also runs as a native host on Windows 11 22H2+ (x64), shipped as a signed installer — see Windows Host for what it includes and its limitations.
For hardware encode you need a GPU — NVIDIA (NVENC), AMD (AMF), or Intel (QSV); there's a software
fallback without one. More detail — including the CLI punktfunk-host service install path — is in
Running as a Service → Windows.
winget (recommended)
In an admin PowerShell, register the Punktfunk source once, then install:
winget source add -n punktfunk https://winget.punktfunk.unom.io -t Microsoft.Rest
winget install unom.PunktfunkHost
Later, winget upgrade unom.PunktfunkHost updates it in place. Add --interactive to get the full
wizard instead (the optional task checkboxes, the web-console password page). winget carries
stable releases only — canary builds are not published there.
Manual download
Download punktfunk-host-setup-<ver>.exe and run it elevated. The full procedure — where to get it,
everything the installer puts on the machine, its optional tasks, the console password, and the
/VERYSILENT unattended switch — lives on one page: Windows Host → Install.
This is also the path for canary builds, which winget doesn't carry — see
Release Channels for that download.
About the Unknown Publisher prompt. The installer is signed with a self-signed certificate, so Windows warns before it runs — accepting the prompt is enough, nothing else is required. The winget route is no different: it downloads and runs that same installer. If you'd rather silence it, the matching
punktfunk-host-windows_<ver>.ceris published next to the installer, and it's the same certificate for every release, so this is one-time. A self-signed certificate is its own root, so it has to go in both stores. In an admin PowerShell:Import-Certificate -FilePath .\punktfunk-host-windows_<ver>.cer ` -CertStoreLocation Cert:\LocalMachine\Root Import-Certificate -FilePath .\punktfunk-host-windows_<ver>.cer ` -CertStoreLocation Cert:\LocalMachine\TrustedPublisherThis is a different certificate from the one the bundled drivers are signed with — the installer imports that one for you.
NixOS
The repo's flake.nix is a supported install path: it builds punktfunk-host, punktfunk-client,
punktfunk-web and punktfunk-scripting, and ships a NixOS module. x86_64-linux only, and
NixOS 24.11 or newer.
You can run it straight from the flake without NixOS (on other distros, wrap it in nixGL so the GPU drivers resolve):
nix run git+https://git.unom.io/unom/punktfunk#punktfunk-host -- serve --gamestream
On NixOS, add the flake as an input, add punktfunk.nixosModules.default to your system's modules,
and enable the host:
services.punktfunk.host = {
enable = true;
users = [ "alice" ]; # added to the `input` group, for virtual gamepads
openFirewall = true;
settings = { RUST_LOG = "info"; }; # these become host.env
};
The module does declaratively what the deb/RPM scriptlets do — the systemd user service, udev rules,
kernel modules, sysctl tuning, the firewall ports and input group membership — and brings in the
web console alongside the host. Because settings writes the environment file for you, skip the
host.env step in After installing. The user services are defined but not
started, so from your graphical session enable the host and the console:
systemctl --user enable --now punktfunk-host punktfunk-web
The full option reference (client, console and scripting options, GPU driver notes, headless
appliance setup) is in
packaging/nix. To
update, run nix flake update punktfunk in your flake directory, then sudo nixos-rebuild switch.
What the packages are
-
punktfunk-host— the streaming host. Install this on your Linux gaming machine. -
punktfunk-web— the browser management console (pairing + status). Recommended alongside the host. On apt and RPM the host package recommends it, so your package manager pulls it in by default, and the Bazzite sysext image already contains it. On Arch it's an optional dependency, so name it yourself:sudo pacman -Syu punktfunk-web. -
punktfunk-client— the GTK4 desktop client, for streaming to a Linux box (shipped via apt / RPM / Arch, and as a Flatpak). On a Steam Deck take the Flatpak instead — SteamOS's/usris read-only, so the native package isn't the path there:flatpak install --user https://flatpak.unom.io/io.unom.Punktfunk.flatpakrefFor Gaming Mode, add the Decky plugin on top of it. Full client instructions for every device: Install a Client.
-
punktfunk-scripting— the plugin/script runner. Install it if you want plugins or automation. It's inert until you add something to run, so its user unit ships disabled — enable it once you have:systemctl --user enable --now punktfunk-scripting
After installing
These three steps are for the Linux packages. On Windows the installer does the equivalent for you; on NixOS the module does steps 1 and 2, and NixOS above has the units to enable.
-
Add yourself to the
inputgroup — virtual gamepads and pen input both need/dev/uinput— then re-login. The exact command differs per distro — see your guide (usermod -aG input "$USER", orujust add-user-to-input-groupon Bazzite). -
Put your
host.envin place, then start the host. Every Linux package ships a systemd user unit, so you don't run the host by hand — but that unit reads~/.config/punktfunk/host.envand won't start until the file exists. Each package ships a template to copy; your distro and desktop guides say which one to pick (on Bazzite it'shost.env.bazzite):mkdir -p ~/.config/punktfunk # /usr/share/punktfunk/ on Fedora/Arch/Bazzite, /usr/share/punktfunk-host/ on Ubuntu cp /usr/share/punktfunk/host.env.example ~/.config/punktfunk/host.env systemctl --user enable --now punktfunk-hostThe shipped unit runs
serve --gamestream— the nativepunktfunk/1plane plus the GameStream/Moonlight-compatible planes, so stock Moonlight clients work out of the box. Those extra planes are only appropriate on a trusted LAN. To run native-only, drop the flag with a drop-in (systemctl --user edit punktfunk-host):[Service] ExecStart= ExecStart=/usr/bin/punktfunk-host serveThe empty
ExecStart=is required — without it systemd adds a second command instead of replacing the first — and the binary path has to match your install (systemctl --user cat punktfunk-hostshows it; the distro packages use/usr/bin). Save the drop-in, thensystemctl --user restart punktfunk-host. For what each mode starts, see Host CLI →serve. -
Enable the web console:
systemctl --user enable --now punktfunk-webThen open
https://<host-ip>:47992. Reading its login password and arming PIN pairing are covered in The Web Console.
Configure your desktop
How the virtual display and input work depends on your desktop — see KDE, GNOME, Steam / gamescope, Hyprland, or Sway for the compositor-specific setup.
From there, follow the Quick Start to pair your first client. To run the host automatically at boot, see Running as a Service. If something doesn't come up, Troubleshooting starts from the symptom.
Updating and removing
The web console's Host → Updates card tells you when a newer host is out and shows the exact command for the way you installed — the full list, plus one-click updating and how to turn the check off, is on Updating the Host.
To take it back off, see Uninstall — it covers every install method and what is
deliberately left behind (your ~/.config/punktfunk — identity certificate, paired devices, console
password — survives package removal).
Building from source
If no package exists for your platform, you can build from source — see the repository README. Source builds are a fallback; the registries are the supported path.