nixos-config/modules/home/programs/misc/remote-desktop/default.nix

8 lines
149 B
Nix
Raw Normal View History

{ config, lib, pkgs, ... }:
2024-10-09 03:36:08 -04:00
{
home.packages = with pkgs; lib.mkIf config.home.remote-desktop.enable [
2024-10-09 03:36:08 -04:00
moonlight-qt
rustdesk-flutter
2024-10-09 03:36:08 -04:00
];
}