fix(hosts/idols-ai): ssh key name

This commit is contained in:
Ryan Yin
2025-05-20 11:13:40 +08:00
parent 9649a79e75
commit bee1ef06a4

View File

@@ -1,6 +1,4 @@
{config, ...}: let
hostName = "ai"; # Define your hostname.
in {
{config, ...}: {
modules.desktop = {
hyprland = {
nvidia = true;
@@ -15,5 +13,5 @@ in {
};
};
programs.ssh.matchBlocks."github.com".identityFile = "${config.home.homeDirectory}/.ssh/${hostName}";
programs.ssh.matchBlocks."github.com".identityFile = "${config.home.homeDirectory}/.ssh/idols-ai";
}