mirror of
https://github.com/nix-community/home-manager.git
synced 2025-11-08 19:46:05 +01:00
54 lines
1.3 KiB
Nix
54 lines
1.3 KiB
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}:
|
|
|
|
let
|
|
cfg = config.services.status-notifier-watcher;
|
|
in
|
|
{
|
|
meta.maintainers = [ lib.hm.maintainers.pltanton ];
|
|
|
|
options = {
|
|
services.status-notifier-watcher = {
|
|
enable = lib.mkEnableOption "Status Notifier Watcher";
|
|
|
|
package = lib.mkOption {
|
|
default = pkgs.haskellPackages.status-notifier-item;
|
|
defaultText = lib.literalExpression "pkgs.haskellPackages.status-notifier-item";
|
|
type = lib.types.package;
|
|
example = lib.literalExpression "pkgs.haskellPackages.status-notifier-item";
|
|
description = "The package to use for the status notifier watcher binary.";
|
|
};
|
|
};
|
|
};
|
|
|
|
config = lib.mkIf cfg.enable {
|
|
assertions = [
|
|
(lib.hm.assertions.assertPlatform "services.status-notifier-watcher" pkgs lib.platforms.linux)
|
|
];
|
|
|
|
systemd.user.services.status-notifier-watcher = {
|
|
Unit = {
|
|
Description = "SNI watcher";
|
|
PartOf = [ "tray.target" ];
|
|
Before = [ "taffybar.service" ];
|
|
};
|
|
|
|
Service = {
|
|
Type = "dbus";
|
|
BusName = "org.kde.StatusNotifierWatcher";
|
|
ExecStart = "${cfg.package}/bin/status-notifier-watcher";
|
|
};
|
|
|
|
Install = {
|
|
WantedBy = [
|
|
"tray.target"
|
|
"taffybar.service"
|
|
];
|
|
};
|
|
};
|
|
};
|
|
}
|