13 lines
277 B
Nix
13 lines
277 B
Nix
|
{ pkgs, lib, config, ... }: {
|
||
|
options = {
|
||
|
remote-desktop.enable = lib.mkEnableOption "Enable remote desktop related apps";
|
||
|
};
|
||
|
|
||
|
config = mkIf misc.remote-desktop.nvidia.enable; {
|
||
|
home.packages = with pkgs; [
|
||
|
moonlight-qt
|
||
|
rustdesk-flutter
|
||
|
];
|
||
|
};
|
||
|
}
|