mirror of
https://github.com/nix-community/home-manager.git
synced 2025-12-02 15:11:03 +01:00
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.
This commit is contained in:
parent
b74b22bb61
commit
db56335ca8
1 changed files with 1 additions and 1 deletions
|
|
@ -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
|
||||
]);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue