10 lines
178 B
Nix
10 lines
178 B
Nix
{ config, pkgs, lib, vars, ... }:
|
|
let
|
|
wm = vars.wm;
|
|
in
|
|
{
|
|
services.xrdp.enable = true;
|
|
services.xrdp.defaultWindowManager = wm;
|
|
services.xrdp.openFirewall = true;
|
|
}
|