Temporarily disable managing ssh with home-manager

This commit is contained in:
ItsDrike 2024-06-30 20:23:18 +02:00
parent 9351177447
commit 2ee2091546
Signed by: ItsDrike
GPG key ID: FA2745890B7048C0

View file

@ -1,7 +1,11 @@
{
programs = {
ssh = {
enable = true;
# TODO: Enable this after figuring out how to add protected/encrypted blocks here.
# I don't like the idea of expising IPs/hostnames in the config.
# For now, I just persist the .ssh directory, managing stuff manually.
enable = false;
hashKnownHosts = true;
compression = true;
matchBlocks = {
@ -20,8 +24,6 @@
hostname = "gitlab.com";
identityFile = "~/.ssh/git/github-itsdrike";
};
# TODO: Figure out how to add protected/encrypted blocks here
# I don't like the idea of expising IPs/hostnames in the config
};
};
};