From fe652c74a9d0b12355d901983a532b4800a5ed08 Mon Sep 17 00:00:00 2001 From: osbm Date: Mon, 15 Sep 2025 13:03:01 +0300 Subject: [PATCH] use relative path --- home/ssh.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/home/ssh.nix b/home/ssh.nix index 0a52123..c693e62 100644 --- a/home/ssh.nix +++ b/home/ssh.nix @@ -4,7 +4,7 @@ let sshBlock = hostname: { hostname = hostname; user = "osbm"; - identityFile = "/home/osbm/.ssh/id_ed25519"; + identityFile = "~/.ssh/id_ed25519"; extraOptions = { # [ERROR] - (starship::print): Under a 'dumb' terminal (TERM=dumb). "RemoteCommand" = "fish"; @@ -17,7 +17,7 @@ let sshBlockAtreus = hostname: { hostname = hostname; user = "osbm"; - identityFile = "/home/osbm/.ssh/id_ed25519"; + identityFile = "~/.ssh/id_ed25519"; port = 8022; hashKnownHosts = true; compression = true;