build(flake): enable for all systems

This commit is contained in:
iofq 2025-03-15 00:47:23 -05:00
parent 9028ed4893
commit 7e87ede672
5 changed files with 39 additions and 24 deletions

View file

@ -34,6 +34,7 @@ with lib;
# if the appName is something different than "nvim"
viAlias ? appName == "nvim", # Add a "vi" binary to the build output as an alias?
vimAlias ? appName == "nvim", # Add a "vim" binary to the build output as an alias?
wrapRc ? true,
}: let
# This is the structure of a plugin definition.
# Each plugin in the `plugins` argument list can also be defined as this attrset
@ -176,7 +177,7 @@ with lib;
+ extraMakeWrapperLuaCArgs
+ " "
+ extraMakeWrapperLuaArgs;
wrapRc = true;
wrapRc = wrapRc;
});
isCustomAppName = appName != null && appName != "nvim";