Files
cnix/modules/home/programs/mangohud/default.nix
2025-08-29 15:25:40 +02:00

23 lines
342 B
Nix

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