mirror of
https://github.com/nix-community/home-manager
synced 2024-11-04 18:29:45 +01:00
76 lines
1.7 KiB
Nix
76 lines
1.7 KiB
Nix
|
{ config, lib, pkgs, ... }:
|
||
|
|
||
|
with lib;
|
||
|
|
||
|
let
|
||
|
|
||
|
cfg = config.services.kdeconnect;
|
||
|
package = pkgs.kdeconnect;
|
||
|
|
||
|
in
|
||
|
|
||
|
{
|
||
|
meta.maintainers = [ maintainers.adisbladis ];
|
||
|
|
||
|
options = {
|
||
|
services.kdeconnect = {
|
||
|
enable = mkEnableOption "KDE connect";
|
||
|
|
||
|
indicator = mkOption {
|
||
|
type = types.bool;
|
||
|
default = false;
|
||
|
description = "Whether to enable kdeconnect-indicator service.";
|
||
|
};
|
||
|
|
||
|
};
|
||
|
};
|
||
|
|
||
|
config = mkMerge [
|
||
|
(mkIf cfg.enable {
|
||
|
home.packages = [ package ];
|
||
|
|
||
|
systemd.user.services.kdeconnect = {
|
||
|
Unit = {
|
||
|
Description = "Adds communication between your desktop and your smartphone";
|
||
|
After = [ "graphical-session-pre.target" ];
|
||
|
PartOf = [ "graphical-session.target" ];
|
||
|
};
|
||
|
|
||
|
Install = {
|
||
|
WantedBy = [ "graphical-session.target" ];
|
||
|
};
|
||
|
|
||
|
Service = {
|
||
|
Environment = "PATH=%h/.nix-profile/bin";
|
||
|
ExecStart = "${package}/lib/libexec/kdeconnectd";
|
||
|
Restart = "on-abort";
|
||
|
};
|
||
|
};
|
||
|
})
|
||
|
|
||
|
(mkIf cfg.indicator {
|
||
|
systemd.user.services.kdeconnect-indicator = {
|
||
|
Unit = {
|
||
|
Description = "kdeconnect-indicator";
|
||
|
After = [ "graphical-session-pre.target"
|
||
|
"polybar.service"
|
||
|
"taffybar.service"
|
||
|
"stalonetray.service" ];
|
||
|
PartOf = [ "graphical-session.target" ];
|
||
|
};
|
||
|
|
||
|
Install = {
|
||
|
WantedBy = [ "graphical-session.target" ];
|
||
|
};
|
||
|
|
||
|
Service = {
|
||
|
Environment = "PATH=%h/.nix-profile/bin";
|
||
|
ExecStart = "${package}/bin/kdeconnect-indicator";
|
||
|
Restart = "on-abort";
|
||
|
};
|
||
|
};
|
||
|
})
|
||
|
|
||
|
];
|
||
|
}
|