2
2
mirror of https://git.feal.no/felixalb/nixos-config.git synced 2025-01-09 11:51:14 +01:00
nixos-config/hosts/edison/desktop/remote.nix

13 lines
315 B
Nix

{ config, pkgs, lib, ... }:
{
# Microsoft-style Remote Desktop:
services.xrdp = {
enable = true;
defaultWindowManager = "xfce4-session"; # Avoid fancy animations, no hyprland/GNOME!
openFirewall = true;
};
# X window forwarding with `ssh -Y`
services.openssh.settings.X11Forwarding = true;
}