11 lines
155 B
Nix
11 lines
155 B
Nix
{
|
|
pkgs ? import <nixpkgs> { },
|
|
}:
|
|
pkgs.mkShell {
|
|
nativeBuildInputs = with pkgs; [
|
|
cmake
|
|
qt6.qtbase
|
|
qt6.wrapQtAppsHook
|
|
wlr-randr
|
|
];
|
|
}
|