Skip to content

Commit 8fc69c9

Browse files
committed
chore: move ssh config
1 parent 2d56654 commit 8fc69c9

File tree

4 files changed

+12
-60
lines changed

4 files changed

+12
-60
lines changed

.config/nix/modules/home-manager.nix

Lines changed: 7 additions & 41 deletions
Original file line numberDiff line numberDiff line change
@@ -45,52 +45,18 @@
4545
programs.gh = {
4646
enable = true;
4747
extensions = with pkgs; [
48-
gh-dash
4948
gh-poi
5049
];
5150
};
52-
programs.gh-dash = {
53-
enable = true;
54-
settings = {
55-
issuesSections = [
56-
{
57-
title = "Issues";
58-
filters = "is:open author:@me";
59-
}
60-
{
61-
title = "Assigned";
62-
filters = "is:open assignee:@me";
63-
}
64-
{
65-
title = "Involved";
66-
filters = "is:open involves:@me -author:@me";
67-
}
68-
{
69-
title = "Wevm";
70-
filters = "is:open org:wevm";
71-
}
72-
];
73-
prSections = [
74-
{
75-
title = "Pull Requests";
76-
filters = "is:open author:@me";
77-
}
78-
{
79-
title = "Review Requested";
80-
filters = "is:open review-requested:@me";
81-
}
82-
{
83-
title = "Involved";
84-
filters = "is:open involves:@me -author:@me";
85-
}
86-
{
87-
title = "Wevm";
88-
filters = "is:open org:wevm";
89-
}
90-
];
51+
programs.home-manager.enable = true;
52+
53+
home.file = {
54+
ssh = {
55+
source = ../files/ssh;
56+
target = ".ssh";
57+
recursive = true;
9158
};
9259
};
93-
programs.home-manager.enable = true;
9460

9561
xdg = {
9662
enable = true;

.config/nix/modules/shell.nix

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,9 +44,12 @@
4444
set FOUNDRY_BIN $HOME/.foundry/bin
4545
fish_add_path $FOUNDRY_BIN
4646
47+
# 1password
48+
set -x SSH_AUTH_SOCK "~/Library/Group\ Containers/2BUA8C4S2C.com.1password/t/agent.sock"
49+
4750
# bun
48-
set --export BUN_INSTALL "$HOME/.bun"
49-
set --export PATH $BUN_INSTALL/bin $PATH
51+
set -x BUN_INSTALL "$HOME/.bun"
52+
set -x PATH $BUN_INSTALL/bin $PATH
5053
'';
5154
plugins = [
5255
# https://github.com/jorgebucaran/autopair.fish

.ssh/config

Lines changed: 0 additions & 16 deletions
This file was deleted.

.ssh/tom.pub

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)