From 300849b8c694151f056972c553bfcc8913772e9a Mon Sep 17 00:00:00 2001 From: DannyDannyDanny Date: Mon, 6 Apr 2026 12:15:10 +0200 Subject: [PATCH] =?UTF-8?q?fix:=20neovim=20extraLuaConfig=E2=86=92initLua,?= =?UTF-8?q?=20remove=20uhk-agent=20(linux-only)=20=F0=9F=94=A7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - programs.neovim.extraLuaConfig renamed to initLua in nixpkgs unstable - uhk-agent is x86_64-linux only, removed from darwin home config; macOS: download .dmg from ultimatehackingkeyboard.com --- nixos/neovim.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/neovim.nix b/nixos/neovim.nix index 8f65b29..b820bdf 100644 --- a/nixos/neovim.nix +++ b/nixos/neovim.nix @@ -21,7 +21,7 @@ let g:netrw_winsize = 25 ''; - extraLuaConfig = '' + initLua = '' -- Auto-detect system theme (dark/light) from marker file local config_file = os.getenv("HOME") .. "/.local/share/nvim_color_scheme" local f = io.open(config_file, "r")