summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
Diffstat (limited to 'config')
-rw-r--r--config/gaming.nix7
1 files changed, 6 insertions, 1 deletions
diff --git a/config/gaming.nix b/config/gaming.nix
index 47aeda7..2cc57dc 100644
--- a/config/gaming.nix
+++ b/config/gaming.nix
@@ -3,6 +3,7 @@ let
pkgs_unstable = pkgs.my-extras.nixpkgs-unstable.legacyPackages.${pkgs.system};
my_steam = self: super: {
steam = super.steam.override {
+ # steam = pkgs_unstable.steam.override {
# nativeOnly = true;
withJava = true;
extraPkgs = p: with pkgs;
@@ -56,7 +57,11 @@ let
in
{
nixpkgs.overlays = [ my_steam ];
- nixpkgs.config.allowBroken = true;
+ # nixpkgs.config.allowBroken = true;
+ nixpkgs.config.allowUnfree = true;
+ # nixpkgs.config.allowUnfreePredicate = pkg: builtins.elem (lib.getName pkg) [
+ # "steam"
+ # ];
programs.steam.enable = true;
hardware.opengl.extraPackages32 = with pkgs.pkgsi686Linux; [ libva ];