tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
nixos/ssh: fix example
mingchuan
8 years ago
e0318379
4c263586
+2
-2
1 changed file
expand all
collapse all
unified
split
nixos
modules
programs
ssh.nix
+2
-2
nixos/modules/programs/ssh.nix
···
148
148
[
149
149
{
150
150
hostNames = [ "myhost" "myhost.mydomain.com" "10.10.1.4" ];
151
151
-
publicKeyFile = "./pubkeys/myhost_ssh_host_dsa_key.pub";
151
151
+
publicKeyFile = ./pubkeys/myhost_ssh_host_dsa_key.pub;
152
152
}
153
153
{
154
154
hostNames = [ "myhost2" ];
155
155
-
publicKeyFile = "./pubkeys/myhost2_ssh_host_dsa_key.pub";
155
155
+
publicKeyFile = ./pubkeys/myhost2_ssh_host_dsa_key.pub;
156
156
}
157
157
]
158
158
'';