From db56335ca8942d86f2200664acdbd5b9212b26ad Mon Sep 17 00:00:00 2001 From: Johan Larsson <13087841+jolars@users.noreply.github.com> Date: Sun, 13 Apr 2025 00:57:05 +0200 Subject: [PATCH] way-displays: fix failing use of `lib.mkDefault` (#6809) The resulting YAML file is mangled by the use of `lib.mkDefault`, causing the service to fail. But we can safely remove it anyway due to the use of `mergeSets` here. --- modules/services/way-displays.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/services/way-displays.nix b/modules/services/way-displays.nix index 7c0074969..de711ed41 100644 --- a/modules/services/way-displays.nix +++ b/modules/services/way-displays.nix @@ -83,7 +83,7 @@ in yaml.generate "way-displays-config.yaml" (mergeSets [ { - CALLBACK_CMD = lib.mkDefault "${pkgs.libnotify}/bin/notify-send \"way-displays \${CALLBACK_LEVEL}\" \"\${CALLBACK_MSG}\""; + CALLBACK_CMD = "${pkgs.libnotify}/bin/notify-send \"way-displays \${CALLBACK_LEVEL}\" \"\${CALLBACK_MSG}\""; } cfg.settings ]);