Add xrdp config, add to plasma desktop

This commit is contained in:
Evie Litherland-Smith 2023-05-23 11:05:44 +01:00
parent 1b08b8581a
commit de75fccdcf
2 changed files with 9 additions and 1 deletions

View file

@ -1,8 +1,9 @@
{pkgs, ...}: let
delta-icon-theme = pkgs.callPackage ./pkgs/delta-icon-theme {};
in {
imports = [./xserver.nix ./sddm.nix];
imports = [./xserver.nix ./sddm.nix ./xrdp.nix];
services.xserver.desktopManager.plasma5.enable = true;
services.xrdp.defaultWindowManager = "startplasma-x11";
programs.kdeconnect.enable = true;
environment.systemPackages = [
pkgs.libsForQt5.lightly

7
desktop/xrdp.nix Normal file
View file

@ -0,0 +1,7 @@
{...}: {
imports = [./xserver.nix];
services.xrdp = {
enable = true;
openFirewall = true;
};
}