This commit is contained in:
iFargle 2023-12-04 17:44:09 +09:00
parent 72561d3093
commit ce2c7f8d1f
2 changed files with 4 additions and 1 deletions

View file

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

View file

@ -3,4 +3,7 @@
systemd.targets.suspend.enable = false;
systemd.targets.hibernate.enable = false;
systemd.targets.hybrid-sleep.enable = false;
services.gnome.gnome-remote-desktop.enable = true;
networking.firewall.allowedTCPPorts = [ 3389 ];
}