Let hyprland do the services starting

This commit is contained in:
SebastianStork 2024-05-21 20:22:53 +02:00
parent a9e83e15ad
commit 905d55db30
13 changed files with 92 additions and 138 deletions

View file

@ -1,19 +0,0 @@
{
config,
lib,
wrappers,
...
}:
{
options.myConfig.de.waybar.enable = lib.mkEnableOption "";
config = lib.mkIf config.myConfig.de.waybar.enable {
programs.waybar = {
enable = true;
package = wrappers.waybar;
systemd.enable = true;
};
systemd.user.services.waybar.Unit.After = [ "sound.target" ];
};
}