nixos-conf/services/game-streaming.nix

14 lines
260 B
Nix

{ config, pkgs, ... }:
{
assertions = [
{
assertion = config.services.xserver.enable;
message = "Game streaming does not work without a desktop!";
}
];
environment.systemPackages = with pkgs; [
moonlight-qt
parsec-bin
];
}