pub-solar-os/modules/sway/waybar.service.nix

23 lines
693 B
Nix
Raw Normal View History

{ pkgs, ... }:
2021-05-30 19:10:28 +00:00
{
Unit = {
Description = "Highly customizable Wayland bar for Sway and Wlroots based compositors.";
Documentation = "https://github.com/Alexays/Waybar/wiki/";
BindsTo = [ "sway-session.target" ];
After = [ "sway-session.target" "network-online.target" ];
2021-05-30 19:10:28 +00:00
Wants = [ "graphical-session-pre.target" "network-online.target" "blueman-applet.service" ];
ConditionEnvironment = [ "WAYLAND_DISPLAY" ];
2021-05-30 19:10:28 +00:00
};
Service = {
Type = "dbus";
Environment = "PATH=${pkgs.bash}/bin:${pkgs.pavucontrol}/bin";
2021-05-30 19:10:28 +00:00
BusName = "fr.arouillard.waybar";
ExecStart = "${pkgs.waybar}/bin/waybar";
};
Install = {
WantedBy = [ "sway-session.target" ];
};
}