1
0
mirror of synced 2024-11-05 09:49:16 +00:00
MassiveKnob/Linux/shell.nix

14 lines
403 B
Nix
Raw Normal View History

2024-06-14 16:29:55 +00:00
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
nativeBuildInputs = with pkgs; [
pkg-config
gtk4
graphene
gdk-pixbuf
];
# For a reason I'm yet to find out, my VSCode terminal sets GDK_BACKEND to x11.
# This is empty in the regular terminal and I'm running wayland.
# Comment this out if it's causing issues for you.
GDK_BACKEND = "wayland";
}