This commit is contained in:
iFargle 2023-12-04 20:58:23 +09:00
parent 2a94f556d9
commit dc3e0faafc
2 changed files with 8 additions and 8 deletions

View file

@ -10,7 +10,7 @@
./ssh-luks.nix ./ssh-luks.nix
./docker.nix ./docker.nix
./wireguard.nix ./wireguard.nix
] ++ lib.optional (builtins.isString desktop) ./desktop.nix; ] ++ lib.optional (builtins.isString desktop) ./rdesktop.nix;
# steam , etc # steam , etc
nixpkgs.config.allowUnfree = true; nixpkgs.config.allowUnfree = true;

View file

@ -7,17 +7,17 @@
services.xrdp = { services.xrdp = {
enable = true; enable = true;
# defaultWindowManager = "gnome-session"; defaultWindowManager = "gnome-session";
openFirewall = true; openFirewall = true;
confDir = "/etc/xrdp/conf"; confDir = "/etc/xrdp/conf";
}; };
# environment.systemPackages = with pkgs; [ xorg.xinit ]; environment.systemPackages = with pkgs; [ xorg.xinit ];
# XRDP needs IPv6 disabled to function. # XRDP needs IPv6 disabled to function.
# boot.kernel.sysctl = { boot.kernel.sysctl = {
# "net.ipv6.conf.enp0s13f0u1.disable_ipv6" = true; "net.ipv6.conf.enp0s13f0u1.disable_ipv6" = true;
# "net.ipv6.conf.all.disable_ipv6" = true; "net.ipv6.conf.all.disable_ipv6" = true;
# "net.ipv6.conf.wlp170s0.disable_ipv6" = true; "net.ipv6.conf.wlp170s0.disable_ipv6" = true;
# }; };
} }