do X11 forwarding as user to the BSDs

This commit is contained in:
Christoph Cullmann 2025-06-09 19:58:33 +02:00
parent 483ae81f72
commit 2264da520b
No known key found for this signature in database
2 changed files with 6 additions and 2 deletions

View file

@ -230,6 +230,9 @@ in
settings.Macs = [ "hmac-sha2-512-etm@openssh.com" ]; settings.Macs = [ "hmac-sha2-512-etm@openssh.com" ];
}; };
# ensure ssh knows where xauth is for X11 forwarding
programs.ssh.setXAuthLocation = true;
# Set your time zone. # Set your time zone.
time.timeZone = "Europe/Berlin"; time.timeZone = "Europe/Berlin";
@ -416,6 +419,7 @@ in
vscodium vscodium
vulkan-tools vulkan-tools
wayland-utils wayland-utils
xorg.xauth
xorg.xhost xorg.xhost
xorg.xlsclients xorg.xlsclients
zoxide zoxide

View file

@ -46,7 +46,7 @@
# ssh around in the local network # ssh around in the local network
beta = "ssh beta.fritz.box"; beta = "ssh beta.fritz.box";
betaroot = "ssh root@beta.fritz.box"; betaroot = "ssh root@beta.fritz.box";
bsd = "ssh bsd.fritz.box"; bsd = "ssh -X bsd.fritz.box";
bsdroot = "ssh root@bsd.fritz.box"; bsdroot = "ssh root@bsd.fritz.box";
mac = "ssh mac.fritz.box"; mac = "ssh mac.fritz.box";
macroot = "ssh root@mac.fritz.box"; macroot = "ssh root@mac.fritz.box";
@ -54,7 +54,7 @@
mikuroot = "ssh root@miku.fritz.box"; mikuroot = "ssh root@miku.fritz.box";
neko = "ssh neko.fritz.box"; neko = "ssh neko.fritz.box";
nekoroot = "ssh root@neko.fritz.box"; nekoroot = "ssh root@neko.fritz.box";
puffy = "ssh puffy.fritz.box"; puffy = "ssh -X puffy.fritz.box";
puffyroot = "ssh root@puffy.fritz.box"; puffyroot = "ssh root@puffy.fritz.box";
star = "ssh star.babylon2k.com"; star = "ssh star.babylon2k.com";
starroot = "ssh root@star.babylon2k.com"; starroot = "ssh root@star.babylon2k.com";