From 379372404381f857b5b4e44d9af210900263e22a Mon Sep 17 00:00:00 2001 From: Ivan Bushchik Date: Mon, 17 Jul 2023 06:44:29 +0300 Subject: [PATCH] Add gaming config --- common/gaming.nix | 14 ++++++++++++++ flake.nix | 1 + 2 files changed, 15 insertions(+) create mode 100644 common/gaming.nix diff --git a/common/gaming.nix b/common/gaming.nix new file mode 100644 index 0000000..f5ed596 --- /dev/null +++ b/common/gaming.nix @@ -0,0 +1,14 @@ +{ config, pkgs, ... }: + +{ + nixpkgs.config.allowUnfree = true; + environment.systemPackages = with pkgs; [ + steam + wineWowPackages.stable + wine + (wine.override { wineBuild = "wine64"; }) + wineWowPackages.staging + winetricks + wineWowPackages.waylandFull + ]; +} \ No newline at end of file diff --git a/flake.nix b/flake.nix index ddf643c..033bffb 100644 --- a/flake.nix +++ b/flake.nix @@ -20,6 +20,7 @@ ./common/laptop.nix ./common/user.nix ./common/graphical.nix + ./common/gaming.nix ./machines/stella/configuration.nix ./machines/stella/hardware.nix ];