From 817ace497b72b38da0c08728a683b7febaccf9cf Mon Sep 17 00:00:00 2001 From: Jairo Llopis Date: Fri, 3 Oct 2025 09:03:27 +0100 Subject: [PATCH] lorri: make notifications service auto-start if enabled Without this fix, the notifications service would need to start by hand every time. @moduon MT-1075 --- modules/services/lorri.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/modules/services/lorri.nix b/modules/services/lorri.nix index be61c2c25..4c3b4051a 100644 --- a/modules/services/lorri.nix +++ b/modules/services/lorri.nix @@ -133,6 +133,10 @@ in in "PATH=${path}"; }; + + Install = { + WantedBy = [ "lorri.service" ]; + }; }; }; };