mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 08:49:44 +01:00
03f8e0b3b3
This is used by SafeEyes (another home-manager) module to show a systemtray icon. See https://git.sr.ht/~steef/snixembed. Fixes #5728
50 lines
1.2 KiB
Nix
50 lines
1.2 KiB
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
let cfg = config.services.snixembed;
|
|
in {
|
|
meta.maintainers = [ maintainers.DamienCassou ];
|
|
|
|
options = {
|
|
services.snixembed = {
|
|
enable = mkEnableOption
|
|
"snixembed: proxy StatusNotifierItems as XEmbedded systemtray-spec icons";
|
|
|
|
package = mkPackageOption pkgs "snixembed" { };
|
|
|
|
beforeUnits = mkOption {
|
|
type = with types; listOf str;
|
|
default = [ ];
|
|
example = [ "safeeyes.service" ];
|
|
description = ''
|
|
List of other units that should be started after snixembed.
|
|
'';
|
|
};
|
|
};
|
|
};
|
|
|
|
config = mkIf cfg.enable {
|
|
assertions = [
|
|
(hm.assertions.assertPlatform "services.snixembed" pkgs platforms.linux)
|
|
];
|
|
|
|
systemd.user.services.snixembed = {
|
|
Install.WantedBy = [ "graphical-session.target" ];
|
|
|
|
Unit = {
|
|
Description = "snixembed";
|
|
PartOf = [ "graphical-session.target" ];
|
|
StartLimitIntervalSec = 100;
|
|
StartLimitBurst = 10;
|
|
Before = cfg.beforeUnits;
|
|
};
|
|
|
|
Service = {
|
|
ExecStart = getExe pkgs.snixembed;
|
|
Restart = "on-failure";
|
|
RestartSec = 3;
|
|
};
|
|
};
|
|
};
|
|
}
|