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
4 changes: 4 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,10 @@ nix-darwin-apply-%: ## Apply nix-darwin configuration
@echo "Applying nix-darwin configuration for $*"
@nix run nix-darwin -- switch --flake .#$* --show-trace

nix-update-flake: ## Update the flake.lock file
@nix flake update
.PHONY: nix-update-flake

nix-garbage-collect: ## Collect Nix garbage (remove unused packages)
@nix-collect-garbage
.PHONY: nix-garbage-collect
Expand Down
24 changes: 12 additions & 12 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 4 additions & 3 deletions users/shared/programs/ssh.nix
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{ config, ... }: {
programs.ssh = {
enable = true;
enableDefaultConfig = false;
matchBlocks = {
"*.github.com" = {
extraOptions = {
Expand All @@ -9,21 +10,21 @@
};
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";
};
};
};
}
2 changes: 1 addition & 1 deletion users/shared/scripts/asdf.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ install_plugin() {

plugins=(
"python 3.12.9" # programming language
"uv 0.6.6" # python package manager
"uv 0.8.13" # python package manager
"rust 1.84.1" # programming language
"golang 1.23.5" # programming language
"terraform 1.12.1" # IaC provisioning
Expand Down