From 53b426435cc075d4487f1ee5bccb0cd4100c38d8 Mon Sep 17 00:00:00 2001 From: Den Afanasyev Date: Wed, 8 Oct 2025 23:44:14 +0000 Subject: [PATCH] wsl: use ssh.exe --- wsl/configuration.nix | 1 + wsl/home.nix | 6 +++--- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/wsl/configuration.nix b/wsl/configuration.nix index 0e7253d..809604b 100755 --- a/wsl/configuration.nix +++ b/wsl/configuration.nix @@ -10,6 +10,7 @@ { nix.settings.experimental-features = [ "nix-command" "flakes" ]; wsl.defaultUser = "duumxh"; + wsl.interop.register = true; programs.zsh.enable = true; diff --git a/wsl/home.nix b/wsl/home.nix index bd32346..e3f45f5 100755 --- a/wsl/home.nix +++ b/wsl/home.nix @@ -33,6 +33,7 @@ enable = true; userName = "Den Afanasyev"; userEmail = "ceo@furry.industries"; + extraConfig = { core.sshcommand = "ssh.exe"; }; }; zsh = { @@ -68,7 +69,7 @@ source ~/.p10k.zsh export TELEPORT_ADD_KEYS_TO_AGENT=no export K9S_SKIN="transparent" - echo "Hey there raccoon! 🦝🍁" + echo "Hey there raccoon!" ''; #localVariables = {}; @@ -190,6 +191,5 @@ }; home-manager.enable = true; - }; - + }; }