9 lines
168 B
Nix
9 lines
168 B
Nix
|
# Game streaming software (and possibly services in future)
|
||
|
{ config, pkgs, ... }:
|
||
|
{
|
||
|
environment.systemPackages = with pkgs; [
|
||
|
moonlight-qt
|
||
|
parsec-bin
|
||
|
];
|
||
|
}
|