nixos-config/config/apps/kdeconnect.nix

9 lines
138 B
Nix
Raw Normal View History

2024-08-15 17:49:30 +00:00
{ pkgs, ... }:
{
services.kdeconnect = {
enable = true;
package = pkgs.kdePackages.kdeconnect-kde;
indicator = true;
};
}