13 lines
270 B
Nix
13 lines
270 B
Nix
{ config, pkgs, lib, ... }:
|
|
{
|
|
services.sunshine = {
|
|
enable = true;
|
|
autoStart = true;
|
|
capSysAdmin = true; # only needed for Wayland -- omit this when using with Xorg
|
|
openFirewall = true;
|
|
};
|
|
environment.systemPackages = [
|
|
pkgs.gnome-randr
|
|
];
|
|
}
|