summary refs log tree commit diff
path: root/pkgs/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/default.nix')
-rw-r--r--pkgs/default.nix21
1 files changed, 12 insertions, 9 deletions
diff --git a/pkgs/default.nix b/pkgs/default.nix
index 1f16455..d98a640 100644
--- a/pkgs/default.nix
+++ b/pkgs/default.nix
@@ -1,17 +1,20 @@
 { pkgs, unstablePkgs, ... }:
 
-rec {
-  inherit (pkgs.callPackages ./electron-wayland-wrappers.nix {})
+{
+  inherit (pkgs.callPackages ./electron-wayland-wrappers.nix { })
     discord
     obsidian
     vscode
-    element-desktop;
+    element-desktop
+    ;
 
-  ghidra = unstablePkgs.callPackage ./ghidra {};
-  
-  ngfx = pkgs.callPackage ./ngfx.nix {};
-  
-  retroarch = pkgs.callPackage ./retroarch.nix {};
+  ghidra = unstablePkgs.callPackage ./ghidra { };
 
-  youcompleteme = pkgs.callPackage ./youcompleteme.nix {};
+  ngfx = pkgs.callPackage ./ngfx.nix { };
+
+  retroarch = pkgs.callPackage ./retroarch.nix { };
+
+  youcompleteme = pkgs.callPackage ./youcompleteme.nix { };
+
+  wine = pkgs.callPackage ./wine.nix { };
 }