From 7a660a8e6db8aa6691bc534c290ee7ea6a000b6f Mon Sep 17 00:00:00 2001 From: ChUrl Date: Mon, 8 Aug 2022 23:35:38 +0200 Subject: [PATCH] enable gaming module --- home/christoph/nixinator/default.nix | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) diff --git a/home/christoph/nixinator/default.nix b/home/christoph/nixinator/default.nix index a994aacc..f49783a7 100644 --- a/home/christoph/nixinator/default.nix +++ b/home/christoph/nixinator/default.nix @@ -10,11 +10,29 @@ rec { carla.enable = true; bitwig.enable = false; + bottles.enable = true; yabridge.enable = true; yabridge.autoSync = true; extraPackages = with pkgs; [ audacity vcv-rack ]; }; - modules.gaming = {}; + modules.gaming = { + enable = true; + + discordChromium.enable = true; + polymc.enable = true; + bottles.enable = true; + + noisetorch = { + enable = true; + autostart = true; + }; + + steam = { + enable = true; + protonGE = true; + gamescope = true; + }; + }; }