diff options
Diffstat (limited to 'modules/hosts/T495/input-leap.nix')
-rw-r--r-- | modules/hosts/T495/input-leap.nix | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/modules/hosts/T495/input-leap.nix b/modules/hosts/T495/input-leap.nix new file mode 100644 index 0000000..cf6d018 --- /dev/null +++ b/modules/hosts/T495/input-leap.nix @@ -0,0 +1,11 @@ +{ pkgs, ... }: { + environment.systemPackages = with pkgs; [ + input-leap + ]; + + networking.firewall = { + allowedTCPPorts = [ + 24800 # input-leaps + ]; + }; +} |