Skip to content

Commit

Permalink
nixos/ssh: fix example
Browse files Browse the repository at this point in the history
  • Loading branch information
sifmelcara committed Oct 31, 2017
1 parent 4c26358 commit e031837
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions nixos/modules/programs/ssh.nix
Expand Up @@ -148,11 +148,11 @@ in
[
{
hostNames = [ "myhost" "myhost.mydomain.com" "10.10.1.4" ];
publicKeyFile = "./pubkeys/myhost_ssh_host_dsa_key.pub";
publicKeyFile = ./pubkeys/myhost_ssh_host_dsa_key.pub;
}
{
hostNames = [ "myhost2" ];
publicKeyFile = "./pubkeys/myhost2_ssh_host_dsa_key.pub";
publicKeyFile = ./pubkeys/myhost2_ssh_host_dsa_key.pub;
}
]
'';
Expand Down

0 comments on commit e031837

Please sign in to comment.