From 1b530779aa1ac5de08725f1d1274c416f03fe47b Mon Sep 17 00:00:00 2001 From: "Lennart J. Kurzweg (Nx2)" Date: Wed, 16 Jul 2025 09:37:17 +0000 Subject: [PATCH 1/3] only hits inline dignostics helix --- home-modules/helix.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/home-modules/helix.nix b/home-modules/helix.nix index 06656a3..61b6f62 100644 --- a/home-modules/helix.nix +++ b/home-modules/helix.nix @@ -184,7 +184,7 @@ supersend-menu = false; }; inline-diagnostics = { - cursor-line = "hint"; + cursor-line = "warning"; other-lines = "disable"; prefix-len = 1; # max-wrap = set above From 1ee84d5dd86bc0cf2f5dc00156abb9e313c1c480 Mon Sep 17 00:00:00 2001 From: "Lennart J. Kurzweg (Nx2)" Date: Wed, 16 Jul 2025 09:37:22 +0000 Subject: [PATCH 2/3] dos2unix --- home.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/home.nix b/home.nix index f971c86..db99921 100644 --- a/home.nix +++ b/home.nix @@ -88,6 +88,7 @@ gsettings-desktop-schemas imagemagick imv + dos2unix jq lolcat lynx From f3b953e87bf09a6b9dc584106ce7ffbd5a5c9ad0 Mon Sep 17 00:00:00 2001 From: "Lennart J. Kurzweg (Nx2)" Date: Wed, 16 Jul 2025 09:37:35 +0000 Subject: [PATCH 3/3] cache yazi on wsl --- nixos-wsl.nix | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/nixos-wsl.nix b/nixos-wsl.nix index c4f003d..1790eac 100644 --- a/nixos-wsl.nix +++ b/nixos-wsl.nix @@ -18,5 +18,18 @@ defaultUser = hyper.user; enable = true; }; - nix.settings.experimental-features = [ "nix-command" "flakes" ]; + nix = { + settings = { + experimental-features = [ "nix-command" "flakes" ]; + substitute = true; + substituters = [ + "https://yazi.cachix.org" + ]; + trusted-public-keys = [ + "yazi.cachix.org-1:Dcdz63NZKfvUCbDGngQDAZq6kOroIrFoyO064uvLh8k=" + ]; + }; + }; + + nixpkgs.hostPlatform = hyper.system; }