summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authorKjetil Orbekk <kj@orbekk.com>2020-10-24 18:16:55 -0400
committerKjetil Orbekk <kj@orbekk.com>2020-10-24 18:16:55 -0400
commite62f947ab16072bacdbd3ff0d2cd3b56b7e0a044 (patch)
treee49fab1c66f23c8be480d045f1833504fd422a11 /config
parent3d9d5c8eb85d3f2063af633deec7fb876f11868e (diff)
Add firelink config
Diffstat (limited to 'config')
-rw-r--r--config/gaming.nix19
1 files changed, 19 insertions, 0 deletions
diff --git a/config/gaming.nix b/config/gaming.nix
new file mode 100644
index 0000000..cdcc6ec
--- /dev/null
+++ b/config/gaming.nix
@@ -0,0 +1,19 @@
+{ config, lib, pkgs, ... }:
+let
+ my_steam = pkgs.steam.override {
+ # nativeOnly = true;
+ withJava = true;
+ extraPkgs = p: [
+ pkgs.openldap
+ pkgs.xorg.xrandr
+ ];
+ };
+in
+{
+ environment.systemPackages = with pkgs; [
+ wineWowPackages.staging
+ my_steam
+ my_steam.run
+ obs-studio
+ ];
+}