xsuspender: fix typo that made debug option a noop (#3653)

This commit is contained in:
Kylie McClain 2023-02-07 18:15:20 -05:00 committed by GitHub
parent 02ac667557
commit 6d95d98b6b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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" ]; };