Skip to content

Commit

Permalink
nixos/steam: init
Browse files Browse the repository at this point in the history
  • Loading branch information
mkg20001 committed Jul 30, 2020
1 parent 43dd81b commit 1e98e89
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 0 deletions.
1 change: 1 addition & 0 deletions nixos/modules/module-list.nix
Original file line number Diff line number Diff line change
Expand Up @@ -156,6 +156,7 @@
./programs/ssmtp.nix
./programs/sysdig.nix
./programs/systemtap.nix
./programs/steam.nix
./programs/sway.nix
./programs/system-config-printer.nix
./programs/thefuck.nix
Expand Down
25 changes: 25 additions & 0 deletions nixos/modules/programs/steam.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{ config, lib, pkgs, ... }:

with lib;

let
cfg = config.programs.steam;
in {
options.programs.steam.enable = mkEnableOption "steam";

config = mkIf cfg.enable {
hardware.opengl = { # this fixes the "glXChooseVisual failed" bug, context: https://github.com/NixOS/nixpkgs/issues/47932
enable = true;
driSupport32Bit = true;
};

# optionally enable 32bit pulseaudio support if pulseaudio is enabled
hardware.pulseaudio.support32Bit = config.hardware.pulseaudio.enable;

hardware.steam-hardware.enable = true;

environment.systemPackages = [ pkgs.steam ];
};

meta.maintainers = with maintainers; [ mkg20001 ];
}

0 comments on commit 1e98e89

Please sign in to comment.