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:
parent
f5ec75fe96
commit
c516173cea
|
@ -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;
|
||||||
|
|
Loading…
Reference in a new issue