feat(gui): add withArcFull specialisation

Always-on offload.
This commit is contained in:
514fpv 2024-01-11 10:59:16 +08:00
parent 9a28c49beb
commit d28162578a
Signed by: koishi
SSH key fingerprint: SHA256:axz0uIzzY+5W19i7QOUuiw5LSqhKfCBKPf3L4xFRxLw

View file

@ -75,9 +75,19 @@ in {
specialisation.withArc = mkIf (cfg.arc != null) {
configuration = {
global.gui.arc = mkForce null;
environment.variables.DRI_PRIME = "1";
powerManagement.cpuFreqGovernor = mkForce "performance";
};
};
specialisation.withArcFull = mkIf (cfg.arc != null) {
configuration = {
global.gui.arc = mkForce null;
powerManagement.cpuFreqGovernor = mkForce "performance";
# set DRI_PRIME in profile to always enable offloading
environment.variables.DRI_PRIME = "1";
services.greetd.settings.default_session.command = ''
# regreet is buggy with offload enabled so we turn it off
env DRI_PRIME=0 ${pkgs.dbus}/bin/dbus-run-session \
${getExe pkgs.cage} ${escapeShellArgs config.programs.regreet.cageArgs} -- \
${getExe config.programs.regreet.package}