hyprland-ws-manager/shell.nix

9 lines
217 B
Nix
Raw Permalink Normal View History

2023-01-03 10:47:43 -05:00
{ pkgs, ... }:
pkgs.mkShell {
# buildInputs is for dependencies you'd need "at run time",
# were you to to use nix-build not nix-shell and build whatever you were working on
buildInputs = [
pkgs.jq
];
}