diff options
author | Vincent Ambo <tazjin@gmail.com> | 2017-10-29T15·47+0100 |
---|---|---|
committer | Vincent Ambo <tazjin@gmail.com> | 2017-10-29T15·47+0100 |
commit | d22510b15f6cdb039f3a21e04de3687de1866a00 (patch) | |
tree | 463dc9d2f5ae68653ae848b2dc5c9d9ea5b3c8ae /adho-configuration.nix | |
parent | dfe1f191a9960c9e05403f040802ec942febe284 (diff) |
feat(adho): Install Steam
Diffstat (limited to 'adho-configuration.nix')
-rw-r--r-- | adho-configuration.nix | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/adho-configuration.nix b/adho-configuration.nix index a36bc264b104..c08ec7350041 100644 --- a/adho-configuration.nix +++ b/adho-configuration.nix @@ -1,5 +1,5 @@ # Local configuration for 'adho' (Thinkpad T470s) -{ config, ...}: +{ config, pkgs, ...}: { boot.initrd.luks.devices.adho.device = "/dev/disk/by-uuid/722006b0-9654-4ea1-8703-e0cf9ac1905e"; @@ -7,6 +7,11 @@ services.xserver.videoDrivers = [ "intel" ]; programs.light.enable = true; + # Attempt to get Steam & co to run: + hardware.opengl.driSupport32Bit = true; + hardware.pulseaudio.support32Bit = true; + environment.systemPackages = [ pkgs.steam ]; + networking = { hostName = "adho"; wireless.enable = true; |