Merge pull request #1 from jbowdre/nixos-xrdp

Configure xrdp on nixos
This commit is contained in:
John Bowdre 2024-01-04 12:36:24 -06:00 committed by GitHub
commit e3bf391c8c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 12 additions and 1 deletions

View file

@ -6,6 +6,7 @@
gdm = {
enable = true;
autoSuspend = false;
wayland = true;
};
};
desktopManager = {
@ -33,4 +34,4 @@
hibernate.enable = false;
hybrid-sleep.enable = false;
};
}
}

View file

@ -0,0 +1,9 @@
{
services = {
xrdp = {
enable = true;
defaultWindowManager = "/run/current-system/sw/bin/gnome-shell";
openFirewall = true;
};
};
}

View file

@ -13,6 +13,7 @@
../common/optional/libvirtd.nix
../common/optional/pipewire.nix
../common/optional/printing.nix
../common/optional/remote-desktop.nix
../common/optional/sshd.nix
];