nixos-conf/services/moonlight.nix

15 lines
260 B
Nix
Raw Normal View History

{ 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
];
}