From fc8d8403e5e16c0d16476f85894f2753d3042013 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vili=20Sinerv=C3=A4?= Date: Sat, 31 Aug 2024 17:25:22 +0300 Subject: [PATCH] Fix lithium --- machine-confs/lithium.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/machine-confs/lithium.nix b/machine-confs/lithium.nix index 43b41a5..5d2f79d 100644 --- a/machine-confs/lithium.nix +++ b/machine-confs/lithium.nix @@ -68,5 +68,5 @@ }; }; - logind.lidSwitch = if config.boot.resumeDevice != "" then "hibernate" else "suspend"; + services.logind.lidSwitch = if config.boot.resumeDevice != "" then "hibernate" else "suspend"; }