From 9c41ea8dccb755d1725bf014823a217b84bcdfd5 Mon Sep 17 00:00:00 2001 From: WanderingPenwing Date: Sun, 4 Aug 2024 11:03:06 +0200 Subject: [PATCH] my config --- shell.nix | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 shell.nix diff --git a/shell.nix b/shell.nix new file mode 100644 index 0000000..accc56b --- /dev/null +++ b/shell.nix @@ -0,0 +1,17 @@ +{ pkgs ? import {} }: + +pkgs.mkShell { + buildInputs = with pkgs; [ + gnumake + gcc + pkg-config + xorg.libX11 + xorg.libXft + xorg.libXinerama + xorg.libXext + fontconfig + freetype + imlib2 + libexif + ]; +}