~toastal/nvim-tree-sitter-unicode-conceal

Showing details for patch f0b59699de88aaa59fb81a739f3bf8290f611349.
2024-05-19 (Sun), 8:30 AM - toastal - f0b59699de88aaa59fb81a739f3bf8290f611349

nvim use getExe

Summary of changes
1 files modified with 7 lines added and 2 lines removed
  • flake.nix with 7 added and 2 removed lines
diff -rN -u old-nvim-tree-sitter-unicode-conceal/flake.nix new-nvim-tree-sitter-unicode-conceal/flake.nix
--- old-nvim-tree-sitter-unicode-conceal/flake.nix	2024-11-24 19:45:53.692016188 +0000
+++ new-nvim-tree-sitter-unicode-conceal/flake.nix	2024-11-24 19:45:53.692016188 +0000
@@ -179,13 +179,18 @@
          );
 
          apps = forAllSystems (
-            { system, pkgs, ... }:
+            {
+               system,
+               pkgs,
+               lib,
+               ...
+            }:
             {
                default = self.apps.${system}.nvim-mod;
 
                nvim-mod = {
                   type = "app";
-                  program = "${self.packages.${system}.nvim-mod}/bin/nvim";
+                  program = lib.getExe self.packages.${system}.nvim-mod;
                };
             }
          );