diff options
Diffstat (limited to 'hm/soft/mangohud.nix')
| -rw-r--r-- | hm/soft/mangohud.nix | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/hm/soft/mangohud.nix b/hm/soft/mangohud.nix new file mode 100644 index 0000000..eae15d5 --- /dev/null +++ b/hm/soft/mangohud.nix @@ -0,0 +1,12 @@ +{ config, lib, ... }: +let + cfg = config.hm.soft.mangohud; +in +{ + options.hm.soft.mangohud.enable = lib.mkEnableOption "mangohud hm config"; + config = lib.mkIf cfg.enable { + programs.mangohud = { + enable = true; + }; + }; +} |
