From 2ebdafd9165f856f8525b37b6cb6ea2c6140ab34 Mon Sep 17 00:00:00 2001 From: "Thomas G. Lopes" Date: Sun, 29 Mar 2026 11:36:38 +0100 Subject: [PATCH] add localsend --- modules/hosts/nixos.nix | 6 ++++++ modules/packages.nix | 1 + 2 files changed, 7 insertions(+) diff --git a/modules/hosts/nixos.nix b/modules/hosts/nixos.nix index 3799612..219e9c3 100644 --- a/modules/hosts/nixos.nix +++ b/modules/hosts/nixos.nix @@ -48,6 +48,12 @@ in { wifi.powersave = false; }; + # LocalSend + networking.firewall = { + allowedTCPPorts = [53317]; + allowedUDPPorts = [53317]; + }; + # WebHID/VIA access on Linux (VIA needs hidraw access) services.udev.extraRules = '' # General VIA rule (matches vial docs/reddit workaround) diff --git a/modules/packages.nix b/modules/packages.nix index 4b3496a..03440e6 100644 --- a/modules/packages.nix +++ b/modules/packages.nix @@ -28,6 +28,7 @@ obs-studio jjui bat + localsend ]; systemd.user.services.handy = {