fixed the broken flake thing

This commit is contained in:
2026-07-06 16:30:31 +01:00
parent 7de01201e8
commit 43112fbc1f
2 changed files with 5 additions and 1 deletions

View File

@@ -53,6 +53,10 @@
# Define the default package for this system # Define the default package for this system
default = inputs.wrappers.wrappers.neovim.wrap { default = inputs.wrappers.wrappers.neovim.wrap {
inherit pkgs; inherit pkgs;
env = {
"CONFIG_ROOT" = ./.;
"NVIM_APPNAME" = "nvim-voidarc-remote";
};
runtimePkgs = pkgList; runtimePkgs = pkgList;
settings.config_directory = ./.; settings.config_directory = ./.;
}; };

View File

@@ -1,7 +1,7 @@
local plugins = {} local plugins = {}
-- 1. Setup paths -- 1. Setup paths
local lua_path = vim.fn.stdpath("config") .. "/lua" local lua_path = os.getenv("CONFIG_ROOT") .. "/lua"
local plugin_dir = lua_path .. "/plugins" local plugin_dir = lua_path .. "/plugins"
-- 2. Use ** to search recursively for all .lua files -- 2. Use ** to search recursively for all .lua files