mirror of
https://github.com/nix-community/home-manager.git
synced 2025-11-08 11:36:05 +01:00
Some files don't need nesting and can be root level again to reduce conflicts with other PRs. Signed-off-by: Austin Horstman <khaneliman12@gmail.com>
52 lines
1,008 B
Nix
52 lines
1,008 B
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}:
|
|
|
|
let
|
|
|
|
cfg = config.services.taffybar;
|
|
|
|
in
|
|
{
|
|
meta.maintainers = [ lib.maintainers.rycee ];
|
|
|
|
options = {
|
|
services.taffybar = {
|
|
enable = lib.mkEnableOption "Taffybar";
|
|
|
|
package = lib.mkPackageOption pkgs "taffybar" { };
|
|
};
|
|
};
|
|
|
|
config = lib.mkIf config.services.taffybar.enable {
|
|
assertions = [
|
|
(lib.hm.assertions.assertPlatform "services.taffybar" pkgs lib.platforms.linux)
|
|
];
|
|
|
|
systemd.user.services.taffybar = {
|
|
Unit = {
|
|
Description = "Taffybar desktop bar";
|
|
PartOf = [ "tray.target" ];
|
|
StartLimitBurst = 5;
|
|
StartLimitIntervalSec = 10;
|
|
};
|
|
|
|
Service = {
|
|
Type = "dbus";
|
|
BusName = "org.taffybar.Bar";
|
|
ExecStart = "${cfg.package}/bin/taffybar";
|
|
Restart = "on-failure";
|
|
RestartSec = "2s";
|
|
};
|
|
|
|
Install = {
|
|
WantedBy = [ "tray.target" ];
|
|
};
|
|
};
|
|
|
|
xsession.importedVariables = [ "GDK_PIXBUF_MODULE_FILE" ];
|
|
};
|
|
}
|