diff --git a/home-manager/machines/wsl/home.nix b/home-manager/machines/wsl/home.nix index 0b1b9b1..98da1cc 100644 --- a/home-manager/machines/wsl/home.nix +++ b/home-manager/machines/wsl/home.nix @@ -28,6 +28,12 @@ programs.command-not-found.enable = true; home.stateVersion = "24.11"; programs.home-manager.enable = true; + + # Machine specific configuration + programs.nushell.environmentVariables = { + VISUAL = "nvim"; + EDITOR = "nvim"; + }; } ) ];