1
0
Fork 0

Reorganize common configuration

This commit is contained in:
Avery 2025-06-21 20:02:48 +02:00
parent d9e2f769d5
commit 93401d0c6d
18 changed files with 81 additions and 128 deletions

View file

@ -0,0 +1,15 @@
{ pkgs, ... }: {
home = {
packages = with pkgs; [
android-studio
android-tools
dotnet-sdk_8
mitmproxy
python3
unityhub
xh
];
sessionVariables = { DOTNET_ROOT = "${pkgs.dotnet-sdk_8}"; };
sessionPath = [ "$HOME/.dotnet/tools" ];
};
}