Files
nix-config/modules/nixos/desktop/remote-desktop/default.nix
2024-01-28 02:20:35 +08:00

14 lines
236 B
Nix

{
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
];
}