tangled
alpha
login
or
join now
nel.pet
/
cyclamen
4
fork
atom
NixOS and Home Manager config
4
fork
atom
overview
issues
pulls
pipelines
tmp: tangled dev ssh
nel.pet
7 months ago
e3ed60dc
83d67aff
verified
This commit was signed with the committer's
known signature
.
nel.pet
SSH Key Fingerprint:
SHA256:Zd+mWw4EweOfjYKNMYyVtMSN7oj+SBabmubG4RThVEI=
+9
-1
1 changed file
expand all
collapse all
unified
split
modules
home
ssh.nix
+9
-1
modules/home/ssh.nix
···
1
1
-
{ ... }: {
1
1
+
{ config, ... }: {
2
2
programs.ssh = {
3
3
enable = true;
4
4
addKeysToAgent = "yes";
5
5
+
matchBlocks = {
6
6
+
"nixos-shell" = {
7
7
+
hostname = "localhost";
8
8
+
port = 2222;
9
9
+
user = "git";
10
10
+
identityFile = "${config.home.homeDirectory}/.ssh/id_ed25519";
11
11
+
};
12
12
+
};
5
13
};
6
14
services.ssh-agent.enable = true;
7
15
}