From 429b387f0baca1b6bbe3d8418545a626dc2108d9 Mon Sep 17 00:00:00 2001 From: Dennis Date: Tue, 10 Feb 2026 08:14:01 +0100 Subject: [PATCH 1/4] adapts blink --- modules/nixvim/completion.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/modules/nixvim/completion.nix b/modules/nixvim/completion.nix index 78a9641..9629b33 100644 --- a/modules/nixvim/completion.nix +++ b/modules/nixvim/completion.nix @@ -12,6 +12,9 @@ "select_prev" "fallback" ]; + "" = [ + "select_accept_and_enter" + ]; "" = [ "show_documentation" "hide_documentation" From ca0aa651b9e89278ca32da64be3e4841e5b7c362 Mon Sep 17 00:00:00 2001 From: Dennis Date: Tue, 10 Feb 2026 08:17:19 +0100 Subject: [PATCH 2/4] fixes blink keybinds --- modules/nixvim/completion.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/nixvim/completion.nix b/modules/nixvim/completion.nix index 9629b33..b2aace2 100644 --- a/modules/nixvim/completion.nix +++ b/modules/nixvim/completion.nix @@ -13,7 +13,7 @@ "fallback" ]; "" = [ - "select_accept_and_enter" + "select_and_accept" ]; "" = [ "show_documentation" From d8d9bbb2969b51f4c17a20bd4c9d53fe409882e4 Mon Sep 17 00:00:00 2001 From: Dennis Date: Tue, 10 Feb 2026 12:15:11 +0100 Subject: [PATCH 3/4] installs minikube --- hosts/dnsc-work/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/hosts/dnsc-work/default.nix b/hosts/dnsc-work/default.nix index ca67684..93b01ab 100644 --- a/hosts/dnsc-work/default.nix +++ b/hosts/dnsc-work/default.nix @@ -71,6 +71,7 @@ "mysql@8.0" "huseyinbabal/tap/tredis" "yt-dlp" + "minikube" ]; homebrew.casks = [ From d672edd3aa6cc908d5d900fae69c6973978b4861 Mon Sep 17 00:00:00 2001 From: Dennis Date: Wed, 11 Feb 2026 13:02:41 +0100 Subject: [PATCH 4/4] do not install biome by itself should only be used in devshell --- modules/nixvim/lsp.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/nixvim/lsp.nix b/modules/nixvim/lsp.nix index cfbc4f6..7c45f42 100644 --- a/modules/nixvim/lsp.nix +++ b/modules/nixvim/lsp.nix @@ -155,8 +155,8 @@ }; biome = { enable = true; - package = pkgs.biome; - packageFallback = true; + package = null; + packageFallback = false; }; };