nix-config/hosts/common/optional/kde-connect.nix
GHOSCHT f054d7186e
Switch from Firefox to Librewolf
homemanager now supports Librewolf configuration
2025-01-09 23:51:43 +01:00

16 lines
503 B
Nix

{ pkgs, ... }: {
programs.kdeconnect.enable = true;
# Create system services for KDE connect
systemd.user.services.kdeconnect = {
description = "Adds communication between your desktop and your smartphone";
after = [ "graphical-session-pre.target" ];
partOf = [ "graphical-session.target" ];
wantedBy = [ "graphical-session.target" ];
serviceConfig = {
ExecStart = "${pkgs.plasma5Packages.kdeconnect-kde}/libexec/kdeconnectd";
Restart = "on-abort";
};
};
}