Add date picker and task improvements

This commit is contained in:
2026-09-10 14:08:54 +02:00
parent cd00f19c4c
commit c520847146
10 changed files with 499 additions and 57 deletions
+17
View File
@@ -0,0 +1,17 @@
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
buildInputs = [
pkgs.wayland
pkgs.libxkbcommon
pkgs.vulkan-loader
pkgs.fontconfig
];
LD_LIBRARY_PATH = pkgs.lib.makeLibraryPath [
pkgs.wayland
pkgs.libxkbcommon
pkgs.vulkan-loader
pkgs.fontconfig
];
}