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

8 lines
149 B
Nix

{ config, lib, pkgs, ... }:
{
home.packages = with pkgs; lib.mkIf config.home.remote-desktop.enable [
moonlight-qt
rustdesk-flutter
];
}