NixOS-Config/system/services/sunshine.nix

9 lines
135 B
Nix
Raw Normal View History

2024-08-24 22:16:51 -04:00
{
# Enable Sunshine as a service
services.sunshine = {
enable = true;
settings.port = 57989;
autoStart = false;
};
}