mirror of
https://github.com/ItsDrike/nixdots
synced 2024-12-25 17:24:35 +00:00
Temporarily disable managing ssh with home-manager
This commit is contained in:
parent
9351177447
commit
2ee2091546
|
@ -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
|
||||
};
|
||||
};
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue