diff --git a/system/configuration.nix b/system/configuration.nix index fbcd724..e72bcff 100644 --- a/system/configuration.nix +++ b/system/configuration.nix @@ -26,7 +26,6 @@ networking.networkmanager.enable = true; # Open kde connect ports programs.kdeconnect.enable = true; - networking.firewall.allowedTCPPorts = [ 55201 ]; # Set your time zone. time.timeZone = "America/Sao_Paulo"; diff --git a/system/gnome.nix b/system/gnome.nix index 5af171c..cb8c106 100644 --- a/system/gnome.nix +++ b/system/gnome.nix @@ -13,13 +13,17 @@ user = "lelgenio"; }; + programs.kdeconnect = { + enable = true; + package = pkgs.gnomeExtensions.gsconnect; + }; + # services.xserver.displayManager.autologin.user = "lelgenio"; environment.systemPackages = with pkgs; with gnome; [ gnome-tweaks dconf-editor chrome-gnome-shell - gnomeExtensions.gsconnect gnomeExtensions.quick-settings-audio-devices-hider ]; }