summary refs log tree commit diff stats
path: root/modules/programs/wine.nix
diff options
context:
space:
mode:
authorAlan Pearce2017-12-04 17:14:17 +0100
committerAlan Pearce2017-12-04 17:14:17 +0100
commit3a20509e2fd9ca2441d370a1c81b724ef84be990 (patch)
tree3228e28e6188b7e29cc198ebc84576f5ad20e657 /modules/programs/wine.nix
parent6e65aed1e286bbbf06e30b80f6aa77de1a2e5928 (diff)
downloadnixos-configuration-3a20509e2fd9ca2441d370a1c81b724ef84be990.tar.lz
nixos-configuration-3a20509e2fd9ca2441d370a1c81b724ef84be990.tar.zst
nixos-configuration-3a20509e2fd9ca2441d370a1c81b724ef84be990.zip
Install wine
Diffstat (limited to 'modules/programs/wine.nix')
-rw-r--r--modules/programs/wine.nix6
1 files changed, 6 insertions, 0 deletions
diff --git a/modules/programs/wine.nix b/modules/programs/wine.nix
new file mode 100644
index 0000000..98dd60a
--- /dev/null
+++ b/modules/programs/wine.nix
@@ -0,0 +1,6 @@
+{ config, pkgs, ... }:
+
+{ environment.systemPackages = with pkgs; [
+    wineStable
+  ];
+}