Move kdeconnect to system and install qbittorrent with home manager

This commit is contained in:
Sravan Balaji
2024-04-01 20:43:21 -04:00
parent d0e27148c7
commit ff832c6e0a
4 changed files with 3 additions and 3 deletions

View File

@@ -0,0 +1,10 @@
{ config, lib, pkgs, systemSettings, ... }:
{
programs.kdeconnect = {
enable = true;
package = (if systemSettings.desktop == "gnome"
then pkgs.gnomeExtensions.gsconnect
else pkgs.libsForQt5.kdeconnect-kde);
};
}