14 lines
269 B
Nix
14 lines
269 B
Nix
{ username, ... }:
|
|
let
|
|
unfree = true;
|
|
desktop = "xfce";
|
|
in {
|
|
imports = [
|
|
../../users/${username}
|
|
../../common/desktops/${desktop}
|
|
../../common/software/packages.nix
|
|
];
|
|
|
|
services.xrdp.openFirewall = true;
|
|
services.xrdp.enable = true;
|
|
}
|