commit ff07d7aaf81605475cf753879f6ec8e96577b861 parent a0d4d9d93e10091346591a2ad758dae334b4d89c Author: breadcat <breadcat@users.noreply.github.com> Date: Fri, 17 Jul 2026 10:48:02 +0100 Add jocalsend and open firewall rules Diffstat:
| A | common/jocalsend.nix | | | 12 | ++++++++++++ |
| M | machines/ilias.nix | | | 1 | + |
2 files changed, 13 insertions(+), 0 deletions(-)
diff --git a/common/jocalsend.nix b/common/jocalsend.nix @@ -0,0 +1,12 @@ +{ lib, pkgs, ... }: +{ + + # Packages + environment.systemPackages = with pkgs; [ jocalsend ]; + nixpkgs.config.allowUnfreePredicate = pkg: builtins.elem (lib.getName pkg) [ "jocalsend" ]; + + # Firewall ports + networking.firewall.allowedTCPPorts = [ 53317 ]; + networking.firewall.allowedUDPPorts = [ 53317 ]; + +} diff --git a/machines/ilias.nix b/machines/ilias.nix @@ -14,6 +14,7 @@ ../common/garbage.nix ../common/gnocchi.nix ../common/home-manager.nix + ../common/jocalsend.nix ../common/limoncello.nix ../common/locale.nix ../common/mount-drives.nix