home-manager now manages ssh client profiles

This commit is contained in:
Emile Clark-Boman 2025-02-12 14:47:47 +10:00
parent f46de5b1d7
commit 16c4e77524
2 changed files with 15 additions and 1 deletions

View file

@ -100,6 +100,20 @@
];
};
# set ssh profiles
# (all we need is hyrule, everything else is through wishlist)
ssh = {
enable = true;
matchBlocks = {
hyrule = {
hostname = "imbored.dev";
user = "ae";
port = 22;
identityFile = "/home/me/.ssh/id_hyrule";
};
};
};
# I want to use fish as my login shell but it always
# goes terrible cause it isn't POSIX compliant, so
# instead Bash is my login and it will just exec fish