Files
Olympus/system-config/services/sunshine/default.nix
2025-08-12 19:32:38 -05:00

19 lines
364 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;
openFirewall = true;
};
};
}