mirror of
https://github.com/Nickiel12/nicks-nix-config.git
synced 2024-11-26 14:45:29 -08:00
14 lines
202 B
Nix
14 lines
202 B
Nix
|
{config, lib, pkgs, ...}:
|
||
|
|
||
|
{
|
||
|
environment.systemPackages = [
|
||
|
pkgs.freerdp
|
||
|
];
|
||
|
|
||
|
services.xrdp = {
|
||
|
enable = true;
|
||
|
defaultWindowManager = "startplasma-x11";
|
||
|
openFirewall = true;
|
||
|
};
|
||
|
}
|