ssh: Enable X11 (retrospective commit)

master
David Crompton 2025-03-28 13:48:01 -04:00
parent 65232cfed3
commit 90e9706907
2 changed files with 11 additions and 0 deletions

View File

@ -81,6 +81,16 @@
sops
# Used for Key Generation
age
# To try to make X11 forwarding work we install xauth
xorg.xauth
xorg.xhost
xorg.libX11
xorg.libXext
xorg.libXrender
xorg.libXtst
xorg.xorgserver
];
nix.registry.nixpkgs.flake = nixpkgs;

View File

@ -1,3 +1,4 @@
{ ... }: {
services.openssh.enable = true;
services.openssh.settings.X11Forwarding = true;
}