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;