This commit is contained in:
Tyler Mayoff 2025-02-17 09:11:09 -05:00
parent 03b3066880
commit 6768bdb19e
No known key found for this signature in database
GPG key ID: B62A5AFAD8E14845
9 changed files with 104 additions and 36 deletions

View file

@ -0,0 +1,48 @@
{pkgs, ...}: {
imports = [
# ../../home/stylix.nix
../../home/common.nix
../../home/kitty.nix
];
# xdg.enable = lib.mkForce false;
home = {
username = "tyler.mayoff";
# homeDirectory = /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
];
sessionVariables = {
ANDROID_HOME = "/Users/tyler.mayoff/Library/Android/sdk";
PATH = "$PATH:/Users/tyler.mayoff/Library/Android/sdk/platform-tools";
};
file.".gnupg/gpg-agent.conf".text = ''
pinentry-program ${pkgs.pinentry_mac}/Applications/pinentry-mac.app/Contents/MacOS/pinentry-mac
'';
};
programs.home-manager.enable = true;
home.stateVersion = "24.11";
}