about summary refs log tree commit diff
path: root/stallo-configuration.nix
diff options
context:
space:
mode:
authorVincent Ambo <tazjin@gmail.com>2018-08-05T14·05+0200
committerVincent Ambo <tazjin@gmail.com>2018-08-05T14·05+0200
commit04ccc713e430def0997168c7042dfd05cdf1fe47 (patch)
treeb6dfce34849449eb3151da95d3c3a3fd0f002cca /stallo-configuration.nix
parentaa9d8b2618e4cca6e7b16609ccd0c6c5716c8d59 (diff)
feat(stallo): Install wine-staging & winetricks
Diffstat (limited to 'stallo-configuration.nix')
-rw-r--r--stallo-configuration.nix5
1 files changed, 4 insertions, 1 deletions
diff --git a/stallo-configuration.nix b/stallo-configuration.nix
index e087b3389856..bbcfc140d39a 100644
--- a/stallo-configuration.nix
+++ b/stallo-configuration.nix
@@ -1,5 +1,5 @@
 # Local configuration for 'stallo' (Home desktop PC)
-{ config, ...}:
+{ config, pkgs, ...}:
 
 {
   boot.initrd.luks.devices.stallo-luks.device = "/dev/disk/by-uuid/b484cf1e-a27b-4785-8bd6-fa85a004b073";
@@ -11,6 +11,9 @@
   hardware.opengl.driSupport32Bit = true;
   hardware.pulseaudio.support32Bit = true;
 
+  # Wine for Blizzard stuff
+  environment.systemPackages = with pkgs.unstable; [ wineStaging winetricks ];
+
   networking = {
     hostName = "stallo";
     wireless.enable = true;