tangled
alpha
login
or
join now
crescentro.se
/
dotfiles
0
fork
atom
(mirror) personal dotfiles
github.com/crescentrose/dotfiles
0
fork
atom
overview
issues
pulls
pipelines
fix: 26.05 deprecations
crescentro.se
2 months ago
5c9ebcb1
cc41ea51
+9
-5
2 changed files
expand all
collapse all
unified
split
home
programs
ssh.nix
shell
developer.nix
+8
-4
home/programs/ssh.nix
···
2
2
# use 1password to authenticate with SSH
3
3
programs.ssh = {
4
4
enable = true;
5
5
-
extraConfig = ''
6
6
-
Host *
7
7
-
IdentityAgent ~/.1password/agent.sock
8
8
-
'';
5
5
+
6
6
+
# Default host config
7
7
+
matchBlocks."*" = {
8
8
+
identityAgent = "~/.1password/agent.sock";
9
9
+
};
10
10
+
11
11
+
# Fix deprecation warning
12
12
+
enableDefaultConfig = false;
9
13
};
10
14
}
+1
-1
home/shell/developer.nix
···
27
27
28
28
# ❄️ Nix
29
29
nixd
30
30
-
nixfmt-rfc-style # nix formatter
30
30
+
nixfmt # nix formatter
31
31
32
32
# 🐍 Python
33
33
uv