diff options
Diffstat (limited to '')
| -rw-r--r-- | modules/calendar.home/orgmode-notifier.module.nix | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/modules/calendar.home/orgmode-notifier.module.nix b/modules/calendar.home/orgmode-notifier.module.nix index b33c2fe..1d6fd90 100644 --- a/modules/calendar.home/orgmode-notifier.module.nix +++ b/modules/calendar.home/orgmode-notifier.module.nix @@ -8,7 +8,10 @@ let Type = "oneshot"; ExecStart = "${config.xdg.configHome}/nvim/orgmode_notifier.sh"; WorkingDirectory = config.home.homeDirectory; - Environment = "PATH=${pkgs.neovim}/bin:${pkgs.libnotify}/bin:/usr/bin:/bin"; + Environment = [ + # NOTE: Bug in orgmode-notifier (pkgs.neovim doesnt build correctly) + "PATH=${pkgs.neovim}/bin:${pkgs.libnotify}/bin:/usr/bin:/bin" + ]; }; }; |
