Files
cnix/home/modules/gaming/mangohud/default.nix
2024-10-13 18:09:15 +02:00

21 lines
352 B
Nix

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