mirror of
https://gitlab.com/ahoneybun/nix-configs.git
synced 2025-05-12 19:24:03 -06:00
11 lines
187 B
Nix
11 lines
187 B
Nix
{ pkgs ? import <nixpkgs> {} }:
|
|
pkgs.mkShell {
|
|
nativeBuildInputs = with pkgs; [
|
|
cargo
|
|
glib
|
|
just
|
|
libxkbcommon
|
|
meson
|
|
pkg-config
|
|
];
|
|
}
|