Install Arial font with rpcs3.

This commit is contained in:
Tom Alexander
2026-08-26 17:16:22 -04:00
parent 1845b1ac30
commit 3bbaeaf2af

View File

@@ -38,7 +38,7 @@ in
}; };
}; };
Miscellaneous = { Miscellaneous = {
"Pause emulation on RPCS3 focus loss" = true; "Pause emulation on RPCS3 focus loss" = false;
"Start games in fullscreen mode" = true; "Start games in fullscreen mode" = true;
"Pause Emulation During Home Menu" = false; # true makes the home menu slow "Pause Emulation During Home Menu" = false; # true makes the home menu slow
}; };
@@ -53,7 +53,10 @@ in
rpcs3 rpcs3
]; ];
allowedUnfree = [ "rpcs3" ]; allowedUnfree = [
"rpcs3"
"corefonts"
];
security.pam.loginLimits = [ security.pam.loginLimits = [
{ {
@@ -70,6 +73,10 @@ in
} }
]; ];
fonts.packages = with pkgs; [
corefonts # Needed for Arial, otherwise launching games fails.
];
me.install.user.talexander.file = { me.install.user.talexander.file = {
".config/rpcs3/config.yml" = lib.mkIf (config.me.rpcs3.config != null) { ".config/rpcs3/config.yml" = lib.mkIf (config.me.rpcs3.config != null) {
source = rpcs3_config_yaml; source = rpcs3_config_yaml;