This commit is contained in:
Leonardo Eugênio 2025-02-21 00:28:03 -03:00
parent 321cb97502
commit 87167a660f
15 changed files with 233 additions and 232 deletions

View file

@ -1,9 +1,24 @@
{ config, lib, ... }:
{
config,
lib,
pkgs,
...
}:
let
cfg = config.my.gaming;
in
{
options.my.gaming.enable = lib.mkEnableOption { };
config = lib.mkIf cfg.enable {
my.mangohud.enable = true;
home.packages = with pkgs; [
# lutris-unwrapped
# steam # It's enabled in the system config
tlauncher
gamescope
glxinfo
vulkan-tools
];
};
}