2021-06-12 09:55:58 +02:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
let
|
|
|
|
cfg = config.programs.mangohud;
|
|
|
|
|
|
|
|
settingsType = with types;
|
|
|
|
(oneOf [ bool int float str path (listOf (oneOf [ int str ])) ]);
|
|
|
|
|
|
|
|
renderOption = option:
|
|
|
|
rec {
|
|
|
|
int = toString option;
|
|
|
|
float = int;
|
|
|
|
path = int;
|
|
|
|
bool = "false";
|
|
|
|
string = option;
|
|
|
|
list = concatStringsSep "," (lists.forEach option (x: toString x));
|
|
|
|
}.${builtins.typeOf option};
|
|
|
|
|
|
|
|
renderLine = k: v: (if isBool v && v then k else "${k}=${renderOption v}");
|
|
|
|
renderSettings = attrs:
|
|
|
|
strings.concatStringsSep "\n" (attrsets.mapAttrsToList renderLine attrs)
|
|
|
|
+ "\n";
|
|
|
|
|
|
|
|
in {
|
|
|
|
options = {
|
|
|
|
programs.mangohud = {
|
2023-07-02 01:45:18 +02:00
|
|
|
enable = mkEnableOption "Mangohud";
|
2021-06-12 09:55:58 +02:00
|
|
|
|
|
|
|
package = mkOption {
|
|
|
|
type = types.package;
|
|
|
|
default = pkgs.mangohud;
|
2021-10-09 11:14:08 +02:00
|
|
|
defaultText = literalExpression "pkgs.mangohud";
|
2023-07-02 01:45:18 +02:00
|
|
|
description = "The Mangohud package to install.";
|
2021-06-12 09:55:58 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
enableSessionWide = mkOption {
|
|
|
|
type = types.bool;
|
|
|
|
default = false;
|
2023-07-02 01:45:18 +02:00
|
|
|
description = ''
|
2022-06-15 15:49:39 +02:00
|
|
|
Sets environment variables so that
|
2021-06-12 09:55:58 +02:00
|
|
|
MangoHud is started on any application that supports it.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
settings = mkOption {
|
|
|
|
type = with types; attrsOf settingsType;
|
|
|
|
default = { };
|
2021-10-09 11:14:08 +02:00
|
|
|
example = literalExpression ''
|
2021-06-12 09:55:58 +02:00
|
|
|
{
|
|
|
|
output_folder = ~/Documents/mangohud/;
|
|
|
|
full = true;
|
|
|
|
}
|
|
|
|
'';
|
2023-07-02 01:45:18 +02:00
|
|
|
description = ''
|
2021-06-12 09:55:58 +02:00
|
|
|
Configuration written to
|
2023-07-01 01:30:13 +02:00
|
|
|
{file}`$XDG_CONFIG_HOME/MangoHud/MangoHud.conf`. See
|
|
|
|
<https://github.com/flightlessmango/MangoHud/blob/master/data/MangoHud.conf>
|
2021-06-12 09:55:58 +02:00
|
|
|
for the default configuration.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
settingsPerApplication = mkOption {
|
|
|
|
type = with types; attrsOf (attrsOf settingsType);
|
|
|
|
default = { };
|
2021-10-09 11:14:08 +02:00
|
|
|
example = literalExpression ''
|
2021-06-12 09:55:58 +02:00
|
|
|
{
|
|
|
|
mpv = {
|
|
|
|
no_display = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
'';
|
2023-07-02 01:45:18 +02:00
|
|
|
description = ''
|
2021-06-12 09:55:58 +02:00
|
|
|
Sets MangoHud settings per application.
|
|
|
|
Configuration written to
|
2023-07-01 01:30:13 +02:00
|
|
|
{file}`$XDG_CONFIG_HOME/MangoHud/{application_name}.conf`. See
|
|
|
|
<https://github.com/flightlessmango/MangoHud/blob/master/data/MangoHud.conf>
|
2021-06-12 09:55:58 +02:00
|
|
|
for the default configuration.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2021-07-07 23:24:27 +02:00
|
|
|
config = mkIf cfg.enable {
|
|
|
|
assertions = [
|
|
|
|
(hm.assertions.assertPlatform "programs.mangohud" pkgs platforms.linux)
|
|
|
|
];
|
2021-06-12 09:55:58 +02:00
|
|
|
|
2021-07-07 23:24:27 +02:00
|
|
|
home.packages = [ cfg.package ];
|
|
|
|
|
|
|
|
home.sessionVariables = mkIf cfg.enableSessionWide {
|
|
|
|
MANGOHUD = 1;
|
|
|
|
MANGOHUD_DLSYM = 1;
|
|
|
|
};
|
2021-06-12 09:55:58 +02:00
|
|
|
|
2021-07-07 23:24:27 +02:00
|
|
|
xdg.configFile = {
|
|
|
|
"MangoHud/MangoHud.conf" =
|
2021-06-12 09:55:58 +02:00
|
|
|
mkIf (cfg.settings != { }) { text = renderSettings cfg.settings; };
|
2021-07-07 23:24:27 +02:00
|
|
|
} // mapAttrs'
|
|
|
|
(n: v: nameValuePair "MangoHud/${n}.conf" { text = renderSettings v; })
|
|
|
|
cfg.settingsPerApplication;
|
|
|
|
};
|
2021-06-12 09:55:58 +02:00
|
|
|
|
|
|
|
meta.maintainers = with maintainers; [ zeratax ];
|
|
|
|
}
|