From e8acf7ca05b546c7f0d3f53865c83fcbe36680e1 Mon Sep 17 00:00:00 2001 From: Avery Date: Wed, 3 Apr 2024 23:27:21 +0200 Subject: [PATCH] Dotnet stuff --- common/home.nix | 5 +++++ 1 file changed, 5 insertions(+) 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; }