mirror of
https://github.com/ItsDrike/nixdots
synced 2024-11-10 02:49:41 +00:00
Temporarily disable managing ssh with home-manager
This commit is contained in:
parent
9351177447
commit
2ee2091546
|
@ -1,7 +1,11 @@
|
||||||
{
|
{
|
||||||
programs = {
|
programs = {
|
||||||
ssh = {
|
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;
|
hashKnownHosts = true;
|
||||||
compression = true;
|
compression = true;
|
||||||
matchBlocks = {
|
matchBlocks = {
|
||||||
|
@ -20,8 +24,6 @@
|
||||||
hostname = "gitlab.com";
|
hostname = "gitlab.com";
|
||||||
identityFile = "~/.ssh/git/github-itsdrike";
|
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