1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-02 21:13:33 +02:00
home-manager/tests/modules/programs/mangohud/basic-configuration.nix
Robert Helgesson cb09a968e9
tests: add option test.stubs
This option provides a more convenient way to overlay dummy packages.
It also adds a function `config.lib.test.mkStubPackage` that can,
e.g., be used for `package` options.
2021-09-26 23:26:38 +02:00

41 lines
1.1 KiB
Nix

{ config, pkgs, ... }:
{
config = {
programs.mangohud = {
enable = true;
package = config.lib.test.mkStubPackage { };
settings = {
output_folder = /home/user/Documents/mangohud;
fps_limit = [ 30 60 ];
vsync = 0;
legacy_layout = false;
cpu_stats = true;
cpu_temp = true;
cpu_power = true;
cpu_text = "CPU";
cpu_mhz = true;
cpu_load_change = true;
cpu_load_value = true;
media_player_name = "spotify";
media_player_order = [ "title" "artist" "album" ];
};
settingsPerApplication = {
mpv = {
output_folder = /home/user/Documents/mpv-mangohud;
no_display = true;
};
};
};
nmt.script = ''
assertFileExists home-files/.config/MangoHud/MangoHud.conf
assertFileContent home-files/.config/MangoHud/MangoHud.conf \
${./basic-configuration.conf}
assertFileExists home-files/.config/MangoHud/mpv.conf
assertFileContent home-files/.config/MangoHud/mpv.conf \
${./basic-configuration-mpv.conf}
'';
};
}