enable sunshine

This commit is contained in:
Dmitriy Kholkin 2025-02-12 21:57:16 +03:00
parent 7422e7a335
commit 55bb74d440
Signed by: AtaraxiaDev
GPG Key ID: FD266B810DF48DF2
3 changed files with 17 additions and 32 deletions

View File

@ -16,7 +16,7 @@
customProfiles.hoyo
customProfiles.minecraft
customProfiles.nicotine
# customProfiles.sunshine
customProfiles.sunshine
customProfiles.wine-games
customProfiles.ollama

View File

@ -0,0 +1,16 @@
{ ... }: {
services.sunshine = {
enable = true;
autoStart = true;
capSysAdmin = true;
openFirewall = true;
};
# boot.kernelModules = [ "uinput" ];
# services.udev.extraRules = ''
# KERNEL=="uinput", GROUP="input", MODE="0660" OPTIONS+="static_node=uinput"
# '';
persist.state.homeDirectories = [ ".config/sunshine" ];
}

View File

@ -1,31 +0,0 @@
{ config, pkgs, ... }: {
boot.kernelModules = [ "uinput" ];
services.udev.extraRules = ''
KERNEL=="uinput", GROUP="input", MODE="0660" OPTIONS+="static_node=uinput"
'';
environment.systemPackages = [ pkgs.sunshine ];
security.wrappers.sunshine = {
owner = "root";
group = "root";
capabilities = "cap_sys_admin+p";
source = "${pkgs.sunshine}/bin/sunshine";
};
systemd.user.services.sunshine = {
description = "sunshine";
wantedBy = [ "graphical-session.target" ];
serviceConfig = {
ExecStart = "${config.security.wrapperDir}/sunshine";
};
};
networking.firewall = {
allowedTCPPorts = [ 47984 47989 47990 48010 ];
allowedUDPPorts = [ 47998 47999 48000 48002 48010 ];
};
persist.state.homeDirectories = [ ".config/sunshine" ];
}