From 04c3c88152a4ee5e86ba308b866cc7a6b97da56a Mon Sep 17 00:00:00 2001 From: Ryan Yin Date: Thu, 5 Jun 2025 10:58:56 +0800 Subject: [PATCH] feat(modules/nixos/remote-desktop): enable tailscale & sunshine --- modules/nixos/desktop/remote-desktop/default.nix | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/modules/nixos/desktop/remote-desktop/default.nix b/modules/nixos/desktop/remote-desktop/default.nix index f40f7993..3ab750cd 100644 --- a/modules/nixos/desktop/remote-desktop/default.nix +++ b/modules/nixos/desktop/remote-desktop/default.nix @@ -3,11 +3,11 @@ mylib, ... }: { - # imports = mylib.scanPaths ./.; - # - # environment.systemPackages = with pkgs; [ - # waypipe - # moonlight-qt # moonlight client, for streaming games/desktop from a PC - # rustdesk # p2p remote desktop - # ]; + imports = mylib.scanPaths ./.; + + environment.systemPackages = with pkgs; [ + waypipe + moonlight-qt # moonlight client, for streaming games/desktop from a PC + rustdesk # p2p remote desktop + ]; }