blob: 5fc7095282302cb58f7016c3ccebe4f3570e0ff6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
{ config, lib, ... }:
let
cfg = config.szpont.hm.soft.gaming;
in
{
options.szpont.hm.soft.gaming.enable = lib.mkEnableOption "gaming hm config";
config = lib.mkIf cfg.enable {
programs.mangohud = {
enable = true;
};
};
}
|