From 011a9da57cab79136e6ccc09af4b03e09fa4a5f3 Mon Sep 17 00:00:00 2001 From: Michael Thomas Date: Fri, 3 Sep 2021 19:33:25 -0400 Subject: [PATCH] New wsl machine, workaround for profile --- user/machines/wsl/home.nix | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/user/machines/wsl/home.nix b/user/machines/wsl/home.nix index ba8f36b..8b95958 100644 --- a/user/machines/wsl/home.nix +++ b/user/machines/wsl/home.nix @@ -11,10 +11,15 @@ neofetch pfetch fortune + micro ]; - programs.zsh.shellAliases = { - code = "/mnt/c/Program\\ Files/Microsoft\\ VS\\ Code/Code.exe"; + programs.zsh = { + shellAliases = { + code = "/mnt/c/Program\\ Files/Microsoft\\ VS\\ Code/Code.exe"; + }; + profileExtra = '' + source $HOME/.profile + ''; }; - -} \ No newline at end of file +}