Skip to content

Commit

Permalink
nixos/waybar: enable systemdSupport for package
Browse files Browse the repository at this point in the history
Signed-off-by: Sefa Eyeoglu <contact@scrumplex.net>
  • Loading branch information
Scrumplex authored and JohnRTitor committed Sep 29, 2024
1 parent d68f1d2 commit 5fcc133
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion nixos/modules/programs/wayland/waybar.nix
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,11 @@ in
{
options.programs.waybar = {
enable = lib.mkEnableOption "waybar, a highly customizable Wayland bar for Sway and Wlroots based compositors";
package = lib.mkPackageOption pkgs "waybar" { };
package =
lib.mkPackageOption pkgs "waybar" { }
// lib.mkOption {
apply = pkg: pkg.override { systemdSupport = true; };
};
};

config = lib.mkIf cfg.enable {
Expand Down

0 comments on commit 5fcc133

Please sign in to comment.