diff options
author | lassulus <lassulus@lassul.us> | 2022-12-26 23:45:25 +0100 |
---|---|---|
committer | lassulus <lassulus@lassul.us> | 2022-12-27 11:49:40 +0100 |
commit | 5a361e638f6619232b34c7ec03915d2a5a27ada5 (patch) | |
tree | 20a6da2f383aa2e1d98f4d7ae3182914b58cc189 /kartei/lass/shodan.nix | |
parent | 6e13334579f16940edb1182662d9ac58e57aba0e (diff) |
kartei lass: split into hostFiles
Diffstat (limited to 'kartei/lass/shodan.nix')
-rw-r--r-- | kartei/lass/shodan.nix | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/kartei/lass/shodan.nix b/kartei/lass/shodan.nix new file mode 100644 index 000000000..0f6080709 --- /dev/null +++ b/kartei/lass/shodan.nix @@ -0,0 +1,37 @@ +{ r6, w6, ... }: +{ + cores = 2; + nets = { + retiolum = { + ip4.addr = "10.243.0.4"; + ip6.addr = r6 "50da"; + aliases = [ + "shodan.r" + ]; + tinc = { + pubkey = '' + -----BEGIN RSA PUBLIC KEY----- + MIIBCgKCAQEA9bUSItw8rEu2Cm2+3IGHyRxopre9lqpFjZNG2QTnjXkZ97QlDesT + YYZgM2lBkYcDN3/LdGaFFKrQQSGiF90oXA2wFqPuIfycx+1+TENGCzF8pExwbTd7 + ROSVnISbghXYDgr3TqkjpPmnM+piFKymMDBGhxWuy1bw1AUfvRzhQwPAvtjB4VvF + 7AVN/Z9dAZ/LLmYfYq7fL8V7PzQNvR+f5DP6+Eubx0xCuyuo63bWuGgp3pqKupx4 + xsixtMQPuqMBvOUo0SBCCPa9a+6I8dSwqAmKWM5BhmNlNCRDi37mH/m96av7SIiZ + V29hwypVnmLoJEFiDzPMCdiH9wJNpHuHuQIDAQAB + -----END RSA PUBLIC KEY----- + ''; + pubkey_ed25519 = "Ptc5VuYkRd5+zHibZwNe3DEgGHHvAk0Ul00dW1YXsrC"; + }; + }; + wiregrill = { + ip6.addr = w6 "50da"; + ip4.addr = "10.244.1.4"; + aliases = [ + "shodan.w" + ]; + wireguard.pubkey = "0rI/I8FYQ3Pba7fQ9oyvtP4a54GWsPa+3zAiGIuyV30="; + }; + }; + secure = true; + ssh.pubkey = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIC9vup68R0I+62FK+8LNtwM90V9P4ukBmU7G7d54wf4C"; + syncthing.id = "AU5RTWC-HXNMDRT-TN4ZHXY-JMQ6EQB-4ZPOZL7-AICZMCZ-LNS2XXQ-DGTI2Q6"; +} |