summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authorKjetil Orbekk <kj@orbekk.com>2021-03-07 10:41:18 -0500
committerKjetil Orbekk <kj@orbekk.com>2021-03-07 10:41:18 -0500
commit4e91f3e6cf9c13bb4b0974715cab8c252247b94b (patch)
tree4a1653bd67dc35991819c18f30773460dbe51d7b /config
parent9656d027cc3c34655c26890adcf6bbf7ef2193a5 (diff)
Try to update steam (needs some cleanup of pkgs)
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 ];