Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 12 additions & 11 deletions modules/darwin/homebrew.nix
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,17 @@ let
"tailscale-app"
"postman"

# TODO(khaykingleb): add notion-mail cask when it's available in homebrew
# Security
"nordpass"

# Productivity
"todoist-app"
"notion"
"notion-calendar"
"pomatez"

# Communication
#"slack"
# "slack"
"zoom"

# TODO(khaykingleb): add preplexity cask when it's available in homebrew
Expand All @@ -28,19 +31,21 @@ let
"excalidrawz"
"drawio"

# Finance
"ibkr"
"tradingview"
"spotify"

# Misc
"google-chrome"
"telegram"
"spotify"
];

personalCasks = lib.lists.flatten [
# Security
"1password"
"keepassxc"

# Productivity
"todoist-app"
"anki"

# Communication
Expand All @@ -55,10 +60,6 @@ let
"mactex"
"zotero"

# Finance
"ibkr"
"tradingview"

# Misc
"obs"
"steam"
Expand All @@ -83,8 +84,8 @@ in
"zlib" # compression library
"ossp-uuid" # uuid generation library
"icu4c" # unicode and globalization library
"awk"
"ansible"
"awk" # text processing language
"ansible" # automation tool for configuring and managing systems

# Compilers and build tools
"gcc@14"
Expand Down
28 changes: 16 additions & 12 deletions users/shared/programs/ssh.nix
Original file line number Diff line number Diff line change
Expand Up @@ -3,28 +3,32 @@
enable = true;
enableDefaultConfig = false;
matchBlocks = {
"*.github.com" = {
"*.cloud.together.ai" = {
user = "gkhaykin";
};
"*.vast.ai" = {
identityFile = "${config.home.homeDirectory}/.ssh/vastai";
};
"alabama alaska" = {
user = "gkhaykin";
proxyCommand = "/opt/homebrew/bin/cloudflared access ssh --hostname %h-dc10.myna.ninja/ssh";
};
"github.com *.github.com" = {
hostname = "ssh.github.com";
port = 443;
user = "git";
identityFile = "${config.home.homeDirectory}/.ssh/id_rsa";
identitiesOnly = true;
extraOptions = {
"AddKeysToAgent" = "yes";
"UseKeychain" = "yes";
};
identityFile = "${config.home.homeDirectory}/.ssh/id_ed25519";
};
"*.vast.ai" = {
identityFile = "${config.home.homeDirectory}/.ssh/vastai";
};
"red" = {
hostname = "64.247.196.50";
user = "shadeform";
identityFile = "${config.home.homeDirectory}/Desktop/projects/iclerk/gpu-access/shadeform_private_key.pem";
};
"alabama alaska" = {
user = "gkhaykin";
proxyCommand = "/opt/homebrew/bin/cloudflared access ssh --hostname %h-dc10.myna.ninja/ssh";
};
"*.cloud.together.ai" = {
user = "gkhaykin";
};
};
};
}