test
This commit is contained in:
parent
24c3cb30c5
commit
27f34c11fe
1 changed files with 5 additions and 1 deletions
|
@ -1,4 +1,5 @@
|
|||
{ ... }: {
|
||||
{ pkgs, ... }: {
|
||||
# Enabling Gnome causes the machien to sleep. Disable all of these.
|
||||
systemd.targets.sleep.enable = false;
|
||||
systemd.targets.suspend.enable = false;
|
||||
systemd.targets.hibernate.enable = false;
|
||||
|
@ -11,6 +12,9 @@
|
|||
confDir = "/etc/xrdp/conf";
|
||||
};
|
||||
|
||||
environment.systemPackages = with pkgs; [ xorg.xinit ];
|
||||
|
||||
|
||||
# XRDP needs IPv6 disabled to function.
|
||||
boot.kernel.sysctl = {
|
||||
"net.ipv6.conf.enp0s13f0u1.disable_ipv6" = true;
|
||||
|
|
Loading…
Reference in a new issue