ntfy-sh: uses fixed dbus session bus address and display

This commit is contained in:
Tigor Hutasuhut 2024-10-20 17:20:54 +07:00
parent 42125834a4
commit d49478741f
2 changed files with 22 additions and 3 deletions

View file

@ -10,8 +10,8 @@ in
ntfy-sh ntfy-sh
]; ];
wayland.windowManager.hyprland.settings.exec-once = [ # wayland.windowManager.hyprland.settings.exec-once = [
"ntfy subscribe --config /etc/ntfy/client.yml --from-config" # "ntfy subscribe --config /etc/ntfy/client.yml --from-config"
]; # ];
}; };
} }

View file

@ -50,6 +50,25 @@ lib.mkMerge [
NTFY_CONFIG = configPath; NTFY_CONFIG = configPath;
}; };
systemd.services.ntfy-client = {
enable = true;
wantedBy = [ "multi-user.target" ];
after = [ "network.target" ];
environment = {
DISPLAY = ":0";
DBUS_SESSION_BUS_ADDRESS = "unix:path=/run/user/${toString config.profile.user.uid}/bus";
};
restartTriggers = [ (builtins.toJSON cfg.client.settings) ];
path = with pkgs; [ bash libnotify ];
description = "ntfy-sh client";
serviceConfig = {
ExecStart = "${pkgs.ntfy-sh}/bin/ntfy --debug subscribe --config /etc/ntfy/client.yml --from-config";
Restart = "on-failure";
User = config.profile.user.uid;
Group = config.profile.user.gid;
};
};
sops = { sops = {
secrets = secrets =
let let