From 6d95d98b6b4876c9ab589327331196b2893581c5 Mon Sep 17 00:00:00 2001 From: Kylie McClain Date: Tue, 7 Feb 2023 18:15:20 -0500 Subject: [PATCH] xsuspender: fix typo that made debug option a noop (#3653) --- modules/services/xsuspender.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/services/xsuspender.nix b/modules/services/xsuspender.nix index 54f13c8d5..058f15471 100644 --- a/modules/services/xsuspender.nix +++ b/modules/services/xsuspender.nix @@ -191,7 +191,7 @@ in { Service = { ExecStart = "${pkgs.xsuspender}/bin/xsuspender"; - Environment = mkIf cfg.debug [ "G_MESSAGE_DEBUG=all" ]; + Environment = mkIf cfg.debug [ "G_MESSAGES_DEBUG=all" ]; }; Install = { WantedBy = [ "graphical-session.target" ]; };