hy3/shell.nix

17 lines
260 B
Nix
Raw Permalink Normal View History

2024-03-05 03:13:50 -08:00
{
hyprland,
pkgs,
hlversion ? "git",
hy3 ? pkgs.callPackage ./default.nix {
inherit hyprland hlversion;
versionCheck = false;
},
}: pkgs.mkShell {
inputsFrom = [ hy3 ];
nativeBuildInputs = with pkgs; [
clang-tools_17
bear
];
}