summaryrefslogtreecommitdiff
path: root/hel.nix
diff options
context:
space:
mode:
authorGregor Kleen <gkleen@yggdrasil.li>2016-05-15 23:18:09 +0200
committerGregor Kleen <gkleen@yggdrasil.li>2016-05-15 23:18:09 +0200
commitbba00f87fd5460e394fc20252732647e301a67ff (patch)
tree73e57f0f58a3e0d7fd8a82c860f4714c57e4a8f0 /hel.nix
parent96b03e1bf70e5ed6021481710a7d6a53a9211c1f (diff)
downloadnixos-bba00f87fd5460e394fc20252732647e301a67ff.tar
nixos-bba00f87fd5460e394fc20252732647e301a67ff.tar.gz
nixos-bba00f87fd5460e394fc20252732647e301a67ff.tar.bz2
nixos-bba00f87fd5460e394fc20252732647e301a67ff.tar.xz
nixos-bba00f87fd5460e394fc20252732647e301a67ff.zip
video over uucp
Diffstat (limited to 'hel.nix')
-rw-r--r--hel.nix12
1 files changed, 9 insertions, 3 deletions
diff --git a/hel.nix b/hel.nix
index 74441e27..b9628a65 100644
--- a/hel.nix
+++ b/hel.nix
@@ -107,8 +107,8 @@
107 nodeName = "hel"; 107 nodeName = "hel";
108 remoteNodes = ["isaac" "ymir"]; # legacy name for odin 108 remoteNodes = ["isaac" "ymir"]; # legacy name for odin
109 sshUser = { 109 sshUser = {
110 openssh.authorizedKeys.keys = [ ''no-port-forwarding,no-X11-forwarding,no-agent-forwarding,command="/var/setuid-wrappers/uucico" ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIEgtDHA7oDIaRwggGGznNaKZF68rFTziqefSCn1t9ZKe uucp@odin'' 110 openssh.authorizedKeys.keys = [ ''no-port-forwarding,no-X11-forwarding,no-agent-forwarding,command="/var/setuid-wrappers/uucico" ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIFH1QWdgoC03nzW5GBuCl2pqASHeIXIYtE9IInHdaKcO uucp@ymir''
111 ''no-port-forwarding,no-X11-forwarding,no-agent-forwarding,command="/var/setuid-wrappers/uucico" ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIFH1QWdgoC03nzW5GBuCl2pqASHeIXIYtE9IInHdaKcO uucp@ymir'' 111 ''no-port-forwarding,no-X11-forwarding,no-agent-forwarding,command="/var/setuid-wrappers/uucico" ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIJhACtnt9+3j2ev4QVA2QBlPtblPnu7yol2njgfMlHtC uucp@odin''
112 ]; 112 ];
113 }; 113 };
114 sshConfig = '' 114 sshConfig = ''
@@ -119,8 +119,14 @@
119 Hostname ymir.niflheim.yggdrasil 119 Hostname ymir.niflheim.yggdrasil
120 IdentityFile ~/.ssh/ymir 120 IdentityFile ~/.ssh/ymir
121 ''; 121 '';
122 commandPath = []; 122 commandPath = [ "${pkgs.callPackage ./hel/recv-media.nix {}}/bin" ];
123 defaultCommands = []; 123 defaultCommands = [];
124 protocols = {
125 isaac = "g";
126 };
127 commands = {
128 isaac = ["recv-media"];
129 };
124 }; 130 };
125 }; 131 };
126 132