diff options
author | Vincent Ambo <tazjin@gmail.com> | 2018-08-05T14·05+0200 |
---|---|---|
committer | Vincent Ambo <tazjin@gmail.com> | 2018-08-05T14·05+0200 |
commit | 04ccc713e430def0997168c7042dfd05cdf1fe47 (patch) | |
tree | b6dfce34849449eb3151da95d3c3a3fd0f002cca /stallo-configuration.nix | |
parent | aa9d8b2618e4cca6e7b16609ccd0c6c5716c8d59 (diff) |
feat(stallo): Install wine-staging & winetricks
Diffstat (limited to 'stallo-configuration.nix')
-rw-r--r-- | stallo-configuration.nix | 5 |
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; |