nixos/modules/rdp/default.nix
Andreas Zweili e1637aa5c9 Remove Gnome desktop
It just feels to slow compared to qtile and I need a lot of extensions to
behave like I want.
In addition a reproducable config is quite hard to do.
2023-05-10 10:24:21 +02:00

9 lines
173 B
Nix

{ pkgs, ... }:
{
services.xrdp = {
enable = true;
defaultWindowManager = "${pkgs.qtile}/bin/qtile start";
};
networking.firewall.allowedTCPPorts = [ 3389 ];
}