Files
cnix/modules/home/gaming/mangohud/default.nix
2024-10-17 20:06:17 +02:00

21 lines
338 B
Nix

{
config,
lib,
...
}: let
inherit (lib) mkIf mkEnableOption;
cfg = config.home.gaming.mangohud;
in {
options = {
home.gaming.mangohud.enable = mkEnableOption "Enables mangohud";
};
config = mkIf cfg.enable {
programs.mangohud = {
enable = true;
settings = {
full = true;
};
};
};
}