From 73c628280f6bb9a713e8647196ad46e6c380eab1 Mon Sep 17 00:00:00 2001 From: Saku Laesvuori Date: Tue, 18 Aug 2026 22:11:44 +0300 Subject: [PATCH] =?UTF-8?q?Korjaa=20valmiustila=20OMS-celebill=C3=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- modules/oms/systems.scm | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/modules/oms/systems.scm b/modules/oms/systems.scm index 3a59229..34db4e2 100644 --- a/modules/oms/systems.scm +++ b/modules/oms/systems.scm @@ -239,7 +239,14 @@ ID with the extended system as it's value." (inherit base) (firmware (cons sof-firmware (operating-system-firmware base))) (initrd-modules - (append '("vmd") (operating-system-initrd-modules base)))))) + (append '("vmd") (operating-system-initrd-modules base))) + (services + (modify-services (operating-system-user-services base) + (elogind-service-type config => + (elogind-configuration + (inherit config) + ;; This machine gets stuck with proper deep sleep (suspend to RAM) + (suspend-mode '(s2idle))))))))) (define-system oms-kone (let ((base (base-operating-system "OMS-kone"))