From 58f12015faeacd6c6f90fd7d7a2bd08e43a4f17f Mon Sep 17 00:00:00 2001 From: Chris Toph Date: Sat, 15 Feb 2025 22:16:36 -0500 Subject: [PATCH] ssh config for rune home --- host/rune/home/default.nix | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/host/rune/home/default.nix b/host/rune/home/default.nix index 6e04f83..e51279b 100644 --- a/host/rune/home/default.nix +++ b/host/rune/home/default.nix @@ -17,6 +17,19 @@ ../modules/vm/home.nix ]; + # ssh + programs.ssh = { + enable = true; + matchBlocks = { + "git.ryot.foo" = { + identityFile = "~/git/.ssh/git"; + }; + }; + extraConfig = '' + IdentityFile ~/.ssh/pve + ''; + }; + # Enables app shorcuts targets.genericLinux.enable = true; xdg.mime.enable = true;