Fixed/updated broken match blocks

I never set `programs.ssh.enable` so the match blocks weren't taking
effect (and were incorrectly set anyway).
This commit is contained in:
Alejandro Angulo 2023-01-16 15:21:46 -08:00
parent f5ec75fe96
commit c516173cea
Signed by: alejandro-angulo
GPG key ID: 75579581C74554B6

View file

@ -16,13 +16,14 @@
}; };
}; };
programs.ssh.matchBlocks = [ programs.ssh = {
{ enable = true;
"github.com" = { matchBlocks = {
publicKey = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIAbpuKWQFiYhNfKXcYpjWFXsYMh7pyhXdGyV8JPBFzgl"; "pi" = {
user = "nixos";
}; };
} };
]; };
services.gpg-agent = { services.gpg-agent = {
enable = true; enable = true;