diff --git a/home/modules/hyprland/ntfy-sh.nix b/home/modules/hyprland/ntfy-sh.nix index 1e98e69..64aec32 100644 --- a/home/modules/hyprland/ntfy-sh.nix +++ b/home/modules/hyprland/ntfy-sh.nix @@ -6,8 +6,12 @@ let in { config = mkIf (hyprland.enable && cfg.enable) { + home.packages = with pkgs; [ + ntfy-sh + ]; + wayland.windowManager.hyprland.settings.exec-once = [ - "${pkgs.ntfy-sh}/bin/ntfy subscribe --config /etc/ntfy/client.yml --from-config" + "ntfy subscribe --config /etc/ntfy/client.yml --from-config" ]; }; }