nixos-conf/services/game-streaming.nix

16 lines
320 B
Nix
Raw Normal View History

# Game streaming software (and possibly services in future)
{ config, pkgs, ... }:
{
2024-06-06 22:16:29 +03:00
assertions = [
{
assertion = config.services.xserver.enable;
message = "Game streaming does not work without a desktop!";
}
];
environment.systemPackages = with pkgs; [
moonlight-qt
parsec-bin
];
}