mirror of
https://github.com/nix-community/home-manager
synced 2024-11-04 18:29:45 +01:00
4f70f49cec
This target is for systemd units that require a system tray to be running. This also fixes taffybar.service: previously, systemd would consider it to be active (running) before it was actually ready to accept tray icons.
116 lines
3.6 KiB
Nix
116 lines
3.6 KiB
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
{
|
|
meta.maintainers = [ maintainers.rycee ];
|
|
|
|
options = {
|
|
services.syncthing = {
|
|
enable = mkEnableOption "Syncthing continuous file synchronization";
|
|
|
|
tray = mkOption {
|
|
type = with types;
|
|
either bool (submodule {
|
|
options = {
|
|
enable = mkOption {
|
|
type = types.bool;
|
|
default = false;
|
|
description = "Whether to enable a syncthing tray service.";
|
|
};
|
|
|
|
command = mkOption {
|
|
type = types.str;
|
|
default = "syncthingtray";
|
|
defaultText = literalExample "syncthingtray";
|
|
example = literalExample "qsyncthingtray";
|
|
description = "Syncthing tray command to use.";
|
|
};
|
|
|
|
package = mkOption {
|
|
type = types.package;
|
|
default = pkgs.syncthingtray-minimal;
|
|
defaultText = literalExample "pkgs.syncthingtray-minimal";
|
|
example = literalExample "pkgs.qsyncthingtray";
|
|
description = "Syncthing tray package to use.";
|
|
};
|
|
};
|
|
});
|
|
default = { enable = false; };
|
|
description = "Syncthing tray service configuration.";
|
|
};
|
|
};
|
|
};
|
|
|
|
config = mkMerge [
|
|
(mkIf config.services.syncthing.enable {
|
|
home.packages = [ (getOutput "man" pkgs.syncthing) ];
|
|
|
|
systemd.user.services = {
|
|
syncthing = {
|
|
Unit = {
|
|
Description =
|
|
"Syncthing - Open Source Continuous File Synchronization";
|
|
Documentation = "man:syncthing(1)";
|
|
After = [ "network.target" ];
|
|
};
|
|
|
|
Service = {
|
|
ExecStart =
|
|
"${pkgs.syncthing}/bin/syncthing -no-browser -no-restart -logflags=0";
|
|
Restart = "on-failure";
|
|
SuccessExitStatus = [ 3 4 ];
|
|
RestartForceExitStatus = [ 3 4 ];
|
|
};
|
|
|
|
Install = { WantedBy = [ "default.target" ]; };
|
|
};
|
|
};
|
|
})
|
|
|
|
(mkIf (isAttrs config.services.syncthing.tray
|
|
&& config.services.syncthing.tray.enable) {
|
|
systemd.user.services = {
|
|
${config.services.syncthing.tray.package.pname} = {
|
|
Unit = {
|
|
Description = config.services.syncthing.tray.package.pname;
|
|
Requires = [ "tray.target" ];
|
|
After = [ "graphical-session-pre.target" "tray.target" ];
|
|
PartOf = [ "graphical-session.target" ];
|
|
};
|
|
|
|
Service = {
|
|
ExecStart =
|
|
"${config.services.syncthing.tray.package}/bin/${config.services.syncthing.tray.command}";
|
|
};
|
|
|
|
Install = { WantedBy = [ "graphical-session.target" ]; };
|
|
};
|
|
};
|
|
})
|
|
|
|
# deprecated
|
|
(mkIf (isBool config.services.syncthing.tray
|
|
&& config.services.syncthing.tray) {
|
|
systemd.user.services = {
|
|
"syncthingtray" = {
|
|
Unit = {
|
|
Description = "syncthingtray";
|
|
Requires = [ "tray.target" ];
|
|
After = [ "graphical-session-pre.target" "tray.target" ];
|
|
PartOf = [ "graphical-session.target" ];
|
|
};
|
|
|
|
Service = {
|
|
ExecStart = "${pkgs.syncthingtray-minimal}/bin/syncthingtray";
|
|
};
|
|
|
|
Install = { WantedBy = [ "graphical-session.target" ]; };
|
|
};
|
|
};
|
|
warnings = [
|
|
"Specifying 'services.syncthing.tray' as a boolean is deprecated, set 'services.syncthing.tray.enable' instead. See https://github.com/nix-community/home-manager/pull/1257."
|
|
];
|
|
})
|
|
];
|
|
}
|