summaryrefslogtreecommitdiff
path: root/accounts/gkleen@sif
diff options
context:
space:
mode:
authorGregor Kleen <gkleen@yggdrasil.li>2023-05-13 23:40:12 +0200
committerGregor Kleen <gkleen@yggdrasil.li>2023-05-13 23:40:12 +0200
commitd92abb87c06b83088d7693e025d8ad624e7deaea (patch)
treed91f2f8d23ca3d9568dc2ac62301b94daf71541e /accounts/gkleen@sif
parent82ab04745075cc7ca4d1abef55c4c88163709c99 (diff)
downloadnixos-d92abb87c06b83088d7693e025d8ad624e7deaea.tar
nixos-d92abb87c06b83088d7693e025d8ad624e7deaea.tar.gz
nixos-d92abb87c06b83088d7693e025d8ad624e7deaea.tar.bz2
nixos-d92abb87c06b83088d7693e025d8ad624e7deaea.tar.xz
nixos-d92abb87c06b83088d7693e025d8ad624e7deaea.zip
...
Diffstat (limited to 'accounts/gkleen@sif')
-rw-r--r--accounts/gkleen@sif/ssh-hosts.nix4
-rw-r--r--accounts/gkleen@sif/xmonad/xmonad.hs2
2 files changed, 5 insertions, 1 deletions
diff --git a/accounts/gkleen@sif/ssh-hosts.nix b/accounts/gkleen@sif/ssh-hosts.nix
index edfe46a0..bae0f5b8 100644
--- a/accounts/gkleen@sif/ssh-hosts.nix
+++ b/accounts/gkleen@sif/ssh-hosts.nix
@@ -499,6 +499,10 @@
499 } 499 }
500 ]; 500 ];
501 }; 501 };
502 "gitlab.uniworx.de" =
503 { user = "git";
504 identityFile = "~/.ssh/gkleen@gitlab.uniworx.de";
505 };
502 "col-crpd01" = 506 "col-crpd01" =
503 { hostname = "col-crpd01.mathinst.loc"; 507 { hostname = "col-crpd01.mathinst.loc";
504 proxyJump = "mgmt01"; 508 proxyJump = "mgmt01";
diff --git a/accounts/gkleen@sif/xmonad/xmonad.hs b/accounts/gkleen@sif/xmonad/xmonad.hs
index befaeb23..d6e32aab 100644
--- a/accounts/gkleen@sif/xmonad/xmonad.hs
+++ b/accounts/gkleen@sif/xmonad/xmonad.hs
@@ -896,7 +896,7 @@ myKeys' conf host = Map.fromList $
896 safeSpawn "loginctl" ["lock-session", sessId] 896 safeSpawn "loginctl" ["lock-session", sessId]
897 ) 897 )
898 , ((modm .|. shiftMask, xK_s ), safeSpawn "systemctl" ["suspend"]) 898 , ((modm .|. shiftMask, xK_s ), safeSpawn "systemctl" ["suspend"])
899 , ((modm .|. shiftMask, xK_h ), safeSpawn "systemctl" ["hibernate"]) 899 , ((modm .|. shiftMask, xK_h ), safeSpawn "systemctl" ["poweroff"])
900 , ((modm, xK_v ), windows copyToAll) -- @@ Make focused window always visible 900 , ((modm, xK_v ), windows copyToAll) -- @@ Make focused window always visible
901 , ((modm .|. shiftMask, xK_v ), killAllOtherCopies) -- @@ Toggle window state back 901 , ((modm .|. shiftMask, xK_v ), killAllOtherCopies) -- @@ Toggle window state back
902 , ((modm .|. shiftMask, xK_g ), windowPrompt xPConfig Goto wsWindows) 902 , ((modm .|. shiftMask, xK_g ), windowPrompt xPConfig Goto wsWindows)