This commit is contained in:
albert 2024-03-21 22:45:56 +09:00
parent f2daa68b9f
commit 6f0ae1cf45
No known key found for this signature in database
GPG key ID: 64F6C4EB46C4543A
2 changed files with 4 additions and 3 deletions

View file

@ -19,5 +19,7 @@
desktopManager.xfce.enable = true;
};
servics.xrdp.defaultWindowManager = "xfce4-session";
# environment.systemPackages = with pkgs; [ ];
}

View file

@ -1,7 +1,7 @@
{ hostname, username, desktop, tailscalekey, ... }: {
{ desktop, ... }: {
imports = [
../../common/desktops/${desktop}
../common/software/packages.nix
../../common/software/packages.nix
];
networking.firewall.allowedTCPPorts = [ 3389 ];
@ -9,6 +9,5 @@
services.xrdp = {
enable = true;
openFirewall = true;
defaultWindowManager = "xfce4-session";
};
}