gui/kde: stop using programs.kdeconnect

We can't control what interface we listen on when it's used.
This commit is contained in:
Aaron Bieber 2024-03-25 07:52:07 -06:00
parent a2512f48ef
commit dae0a5c3e2
No known key found for this signature in database

View File

@ -1,5 +1,6 @@
{ config
, lib
, pkgs
, isUnstable
, ...
}:
@ -53,6 +54,6 @@ in
allowedTCPPortRanges = [ range ];
};
};
programs.kdeconnect.enable = config.kdeConnect.enable;
environment.systemPackages = mkIf config.kdeConnect.enable [ pkgs.kdeconnect ];
};
}