waydock/flake.nix

24 lines
683 B
Nix
Raw Normal View History

2025-04-15 22:01:07 -04:00
{
description = "Universal dock for wayland compositors"
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
};
outputs = inputs@{ flake-parts, ... }:
flake-parts.lib.mkFlake { inherit inputs; } {
systems = [
"x86_64-linux" "aarch64-linux"
];
perSystem = { config, self', inputs', pkgs, system, ... }: {
devShells.default = pkgs.mkShell {
packages = with pkgs; [
cmake
llvmPackages_19.clangUseLLVM
qt6.full
];
};
};
};
}