Files
Olympus/system-config/services/sunshine/default.nix
2025-08-13 21:17:53 -05:00

23 lines
433 B
Nix

{ config, lib, pkgs, ... }: {
options.sysconfig.opts.sunshine.enable = lib.mkOption {
type = lib.types.bool;
default = false;
};
config = lib.mkIf config.sysconfig.opts.sunshine.enable {
services.sunshine = {
enable = true;
autoStart = true;
capSysAdmin = true;
settings.port = 46990;
openFirewall = true;
};
};
}