Skip to content

Commit

Permalink
chore: move ssh config
Browse files Browse the repository at this point in the history
  • Loading branch information
tmm committed Jun 15, 2024
1 parent 2d56654 commit 8fc69c9
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 60 deletions.
48 changes: 7 additions & 41 deletions .config/nix/modules/home-manager.nix
Original file line number Diff line number Diff line change
Expand Up @@ -45,52 +45,18 @@
programs.gh = {
enable = true;
extensions = with pkgs; [
gh-dash
gh-poi
];
};
programs.gh-dash = {
enable = true;
settings = {
issuesSections = [
{
title = "Issues";
filters = "is:open author:@me";
}
{
title = "Assigned";
filters = "is:open assignee:@me";
}
{
title = "Involved";
filters = "is:open involves:@me -author:@me";
}
{
title = "Wevm";
filters = "is:open org:wevm";
}
];
prSections = [
{
title = "Pull Requests";
filters = "is:open author:@me";
}
{
title = "Review Requested";
filters = "is:open review-requested:@me";
}
{
title = "Involved";
filters = "is:open involves:@me -author:@me";
}
{
title = "Wevm";
filters = "is:open org:wevm";
}
];
programs.home-manager.enable = true;

home.file = {
ssh = {
source = ../files/ssh;
target = ".ssh";
recursive = true;
};
};
programs.home-manager.enable = true;

xdg = {
enable = true;
Expand Down
7 changes: 5 additions & 2 deletions .config/nix/modules/shell.nix
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,12 @@
set FOUNDRY_BIN $HOME/.foundry/bin
fish_add_path $FOUNDRY_BIN
# 1password
set -x SSH_AUTH_SOCK "~/Library/Group\ Containers/2BUA8C4S2C.com.1password/t/agent.sock"
# bun
set --export BUN_INSTALL "$HOME/.bun"
set --export PATH $BUN_INSTALL/bin $PATH
set -x BUN_INSTALL "$HOME/.bun"
set -x PATH $BUN_INSTALL/bin $PATH
'';
plugins = [
# https://github.com/jorgebucaran/autopair.fish
Expand Down
16 changes: 0 additions & 16 deletions .ssh/config

This file was deleted.

1 change: 0 additions & 1 deletion .ssh/tom.pub

This file was deleted.

0 comments on commit 8fc69c9

Please sign in to comment.