diff options
author | stuebinm | 2023-07-01 00:33:38 +0200 |
---|---|---|
committer | stuebinm | 2023-07-01 00:33:38 +0200 |
commit | 4d470bdddb533b7213baaec9de51d3b311b29208 (patch) | |
tree | 8e1ed582e2b1209b7532c495cb0e2c3f6b4a7cac /home | |
parent | eaa8eb3a67a409ba9978f886d175210de379bef8 (diff) |
desktop: ssh agent & askpass
this is cursed and i really need something that doesn't depend on X for
this …
Diffstat (limited to 'home')
-rw-r--r-- | home/home.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/home/home.nix b/home/home.nix index 237279c..0a5072f 100644 --- a/home/home.nix +++ b/home/home.nix @@ -259,7 +259,7 @@ enable = true; matchBlocks = let keydir = config.home.homeDirectory + "/.ssh"; - hetznerlogin = match: {user = "root"; identityFile = keydir + "/hetzner"; forwardAgent = true;} // match; + hetznerlogin = match: {user = "root"; identityFile = keydir + "/hetzner.pub"; forwardAgent = true;} // match; vpslogin = hostname: hetznerlogin {inherit hostname;}; lmulogin = hostname: {identityFile = keydir + "/key_lmu"; user = "lmu-user"; } // { inherit hostname;}; in { |