From e4d49b6e2b73463cd76a4a73d0d943ede017bbce Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Leonardo=20Eug=C3=AAnio?= Date: Wed, 10 Jan 2024 21:52:23 -0300 Subject: [PATCH] kdeconnect: Open kdeconnect ports on firewall --- system/configuration.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/system/configuration.nix b/system/configuration.nix index 03c7221..0cc6f80 100644 --- a/system/configuration.nix +++ b/system/configuration.nix @@ -22,6 +22,9 @@ # networking.proxy.noProxy = "127.0.0.1,localhost,internal.domain"; # Enable networking networking.networkmanager.enable = true; + # Open kde connect ports + programs.kdeconnect.enable = true; + # Set your time zone. time.timeZone = "America/Sao_Paulo"; environment.variables.TZ = config.time.timeZone;