feat: remote desktop

This commit is contained in:
Ryan Yin
2024-01-28 00:27:34 +08:00
parent b231111d93
commit 3302f44178
6 changed files with 172 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
{
pkgs,
mylib,
...
}: {
imports = mylib.scanPaths ./.;
environment.systemPackages = with pkgs; [
waypipe
moonlight-qt # moonlight client, for streaming games/desktop from a PC
rustdesk # p2p remote desktop
];
}