1
0
mirror of https://github.com/nmasur/dotfiles synced 2025-02-24 16:02:02 +00:00
2024-08-07 22:58:58 -04:00

15 lines
260 B
Nix

{
config,
pkgs,
lib,
...
}:
{
options.gaming.moonlight.enable = lib.mkEnableOption "Enable Moonlight game streaming client.";
config = lib.mkIf config.gaming.moonlight.enable {
environment.systemPackages = with pkgs; [ moonlight-qt ];
};
}