lol

nixos/ssh: fix example

+2 -2
+2 -2
nixos/modules/programs/ssh.nix
··· 148 148 [ 149 149 { 150 150 hostNames = [ "myhost" "myhost.mydomain.com" "10.10.1.4" ]; 151 - publicKeyFile = "./pubkeys/myhost_ssh_host_dsa_key.pub"; 151 + publicKeyFile = ./pubkeys/myhost_ssh_host_dsa_key.pub; 152 152 } 153 153 { 154 154 hostNames = [ "myhost2" ]; 155 - publicKeyFile = "./pubkeys/myhost2_ssh_host_dsa_key.pub"; 155 + publicKeyFile = ./pubkeys/myhost2_ssh_host_dsa_key.pub; 156 156 } 157 157 ] 158 158 '';