nichts/nyx/modules/core/profiles/gaming.nix
2024-04-09 23:11:33 +02:00

12 lines
197 B
Nix

{
config,
lib,
...
}: let
inherit (lib) mkIf;
in {
config.modules.system.programs = mkIf config.modules.profiles.gaming.enable {
steam.enable = true;
gaming.enable = true;
};
}