VSCode life

This commit is contained in:
Matthew Bessette
2026-03-05 15:38:23 -05:00
parent 258ffea293
commit 618595addb
5 changed files with 120 additions and 10 deletions

View File

@@ -6,6 +6,14 @@
# 1Password SSH Socket
environment.variables.SSH_AUTH_SOCK = "~/Library/Group Containers/2BU8OCWD5C.com.1password/t/agent.sock";
# Set vim as default editor
environment.variables.EDITOR = "vim";
environment.variables.VISUAL = "vim";
environment.variables.GIT_EDITOR = "vim";
# Add Homebrew to PATH
environment.systemPath = [ "/opt/homebrew/bin" "/opt/homebrew/sbin" ];
system.primaryUser = "matthew.bessette";
users.users."matthew.bessette" = {
name = "matthew.bessette";
@@ -13,11 +21,19 @@
};
# Homebrew for Casks and specific binaries
# In a nix-darwin setup, Homebrew packages are not actually stored inside the Nix store.
# Instead, nix-darwin acts as a manager that triggers the standard Homebrew installation
# process on your macOS system.
homebrew = {
enable = true;
onActivation.cleanup = "uninstall";
onActivation.autoUpdate = true;
onActivation.upgrade = true;
taps = [ "bufbuild/buf" "jacobjohansen/tap" ];
brews = [ "jacobjohansen/tap/rds-auth-proxy"];
brews = [
"biome"
"jacobjohansen/tap/rds-auth-proxy"
];
casks = [
"android-commandlinetools"
"android-platform-tools"
@@ -27,7 +43,6 @@
"signal"
"spotify"
"yubico-yubikey-manager"
"visual-studio-code"
"zoom"
];
};