Files
Sovran_SystemsOS/modules/rdp.nix
2026-03-24 20:48:25 -05:00

17 lines
253 B
Nix
Executable File

{ config, pkgs, lib, ... }:
config.sovran_systemsOS.features.rdp {
services.gnome.gnome-remote-desktop.enable = true;
networking.firewall.allowedTCPPorts = [ 3389 ];
environment.systemPackages = with pkgs; [
freerdp
];
}