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 +}