.dotfiles/dot_config/flake/home/hinge/hinge.nix
2025-01-31 15:47:30 -05:00

43 lines
752 B
Nix

{
lib,
pkgs,
...
}: {
imports = [
../common.nix
../kitty.nix
];
home = {
username = lib.mkForce "tyler.mayoff";
homeDirectory = lib.mkForce "/Users/tyler.mayoff";
packages = with pkgs; [
bazel_7
cmake
conan
black
swiftlint
unstable.helix-gpt
unstable.lsp-ai
python312Packages.python-lsp-server
typescript-language-server
cmake-language-server
jdt-language-server
ffmpeg
sccache
just
yarn
cocoapods
# android-tools
jdk17
];
sessionVariables = {
ANDROID_HOME = "/Users/tyler.mayoff/Library/Android/sdk";
PATH = "$PATH:/Users/tyler.mayoff/Library/Android/sdk/platform-tools";
};
};
}