nichts/nyx/modules/core/profiles/gaming.nix

13 lines
197 B
Nix
Raw Normal View History

2024-04-09 23:11:33 +02:00
{
config,
lib,
...
}: let
inherit (lib) mkIf;
in {
config.modules.system.programs = mkIf config.modules.profiles.gaming.enable {
steam.enable = true;
gaming.enable = true;
};
}