commit 42df6291d829be43afc0d67575795cfa5d3dac83
parent f03f2d115a4d71fc3aaa6fdee81c84e3fc019c6e
Author: rsiddharth <s@ricketyspace.net>
Date: Sun, 22 Apr 2018 02:02:59 +0000
propellor spin
Diffstat:
1 file changed, 10 insertions(+), 0 deletions(-)
diff --git a/config.hs b/config.hs
@@ -709,6 +709,7 @@ lyra = host "lyra.ricketyspace.net" $props
]
-- root config
& Ssh.authorizedKey (User "root") sCanonicalSshPubKey
+ & File.hasContent "/root/.tmux.conf" lyraTmuxConf
-- w config
& User.accountFor (User "w")
& User.hasLoginShell (User "w") "/usr/bin/zsh"
@@ -724,6 +725,15 @@ lyra = host "lyra.ricketyspace.net" $props
& Sudo.enabledFor (User "s")
& Ssh.authorizedKey (User "s") sCanonicalSshPubKey
+lyraTmuxConf :: [File.Line]
+lyraTmuxConf = [
+ "set -g prefix C-a"
+ , "unbind C-b"
+ , "bind C-a send-prefix"
+ , "set -g status-style bg=white"
+ , "set -g status-right"
+ ]
+
ricketyspaceNetNginx :: [String]
ricketyspaceNetNginx = [
"# Adapted from https://gist.github.com/konklone/6532544"