summaryrefslogtreecommitdiff
path: root/nixos/modules/features/binary-compat/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixos/modules/features/binary-compat/default.nix')
-rw-r--r--nixos/modules/features/binary-compat/default.nix23
1 files changed, 23 insertions, 0 deletions
diff --git a/nixos/modules/features/binary-compat/default.nix b/nixos/modules/features/binary-compat/default.nix
new file mode 100644
index 0000000..f2ad751
--- /dev/null
+++ b/nixos/modules/features/binary-compat/default.nix
@@ -0,0 +1,23 @@
+{ pkgs, ... }:
+
+{
+ # Libraries shipped so non-Nix binaries (AppImages, dynamically linked
+ # programs via nix-ld) can resolve their runtime deps.
+ environment.systemPackages = with pkgs; [
+ cacert
+ libGL
+ nss
+ cups
+ libdrm
+ glib
+ pango
+ gtk3
+ zlib
+ expat
+ alsa-lib
+ libxkbcommon
+ atk
+ pkg-config
+ cmake
+ ];
+} \ No newline at end of file