blob: 9384441ee9c782f4e5c1d64a488dbaf167cea07a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
|
{
me,
lib,
pkgs,
auxiliaryPkgs,
...
}:
let
inherit (lib)
substring
toUpper
getExe
;
# todo: move this to a utils package
capitalize = str: toUpper (substring 0 1 str) + substring 1 (-1) str;
user = "mel";
in
{
services.sunshine = {
enable = true;
autoStart = true;
capSysAdmin = true;
openFirewall = true;
settings = {
sunshine_name = capitalize me.name;
# note: these are the settings for wolfram and it's intel arc b570 gpu
# in particular, should be adjusted for different setups when used!
adapter_name = "/dev/dri/renderD128"; # primary card should be located here
encoder = "vaapi"; # or "qsv" is quicksync is better supported
av1_mode = 2;
# no need for encryption since we are going through a secure network anyway
lan_encryption_mode = 0;
wan_encryption_mode = 0;
origin_web_ui_allowed = "wan"; # allow access everywhere
};
applications = {
env = {
# give sunshine access to binaries (we can install stuff into .local/bin if we want)
PATH = "$(PATH):/run/current-system/sw/bin:/etc/profiles/per-user/${user}/bin:$(HOME)/.local/bin";
};
apps = [
# the app that moondeck will call when connecting via moonlight
{
name = "MoonDeckStream";
cmd = "${auxiliaryPkgs.moondeck-buddy}/bin/MoonDeckStream";
image-path = "${auxiliaryPkgs.moondeck-buddy}/share/icons/hicolor/256x256/apps/moondeckbuddy.png";
exclude-global-prep-cmd = "false";
elevated = "false";
}
# + default applications, desktop, low-res desktop, steam big picture
];
};
};
# run the buddy app for the moondeck for a nicer integration of sunshine/moonlight
# when using a steam deck!
systemd.user.services.moondeck-buddy = {
description = "MoonDeck Buddy";
wantedBy = [ "graphical-session.target" ];
partOf = [ "graphical-session.target" ];
after = [
"graphical-session.target"
"network-online.target"
];
serviceConfig = {
ExecStart = "${getExe auxiliaryPkgs.moondeck-buddy}";
# try to stay alive even if something moondeck-buddy depends on,
# like steam, crashes.
Restart = "on-failure";
RestartSec = "5s";
Environment = "QT_QPA_PLATFORM=wayland";
};
};
networking.firewall.allowedTCPPorts = [ 59999 ]; # port for moondeck-buddy
}
|