diff --git a/common/home.nix b/common/home.nix index 43aa65d..494841f 100644 --- a/common/home.nix +++ b/common/home.nix @@ -4,6 +4,11 @@ homeDirectory = "/home/avery"; stateVersion = "24.05"; packages = with pkgs; [ python3 rclone xdg-utils ]; + sessionVariables = { + EDITOR = "nvim"; + DOTNET_ROOT = "${pkgs.dotnet-sdk_7}"; + }; + sessionPath = [ "$HOME/.dotnet/tools" ]; }; programs.home-manager.enable = true; }