This commit is contained in:
iFargle 2023-12-04 17:37:18 +09:00
parent f6b81c0bac
commit 72561d3093
2 changed files with 1 additions and 9 deletions

View file

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

View file

@ -1,7 +0,0 @@
{ inputs, config, lib, pkgs, modulesPath, desktop, username, ... }: {
services.xrdp = {
enable = true;
openFirewall = true;
defaultWindowManager = "gnome-shell";
};
}