add: base project

This commit is contained in:
lily 2025-04-15 22:01:07 -04:00
commit 4d5d6356e2
Signed by: lily
GPG key ID: 601F3263FBCBC4B9
14 changed files with 1571 additions and 0 deletions

24
flake.nix Normal file
View file

@ -0,0 +1,24 @@
{
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
];
};
};
};
}