feat: simple bar for now.

This commit is contained in:
CronyAkatsuki 2026-03-11 20:49:24 +01:00
parent de0cb7d6e0
commit 14dd8214ac
7 changed files with 303 additions and 0 deletions

17
shell.nix Normal file
View file

@ -0,0 +1,17 @@
{
pkgs,
quickshell,
...
}:
pkgs.mkShell {
packages = [
quickshell
pkgs.kdePackages.qtdeclarative
];
shellHook = ''
# Required for qmlls to find the correct type declarations
# Sadly Quickshell doesn't export some types declaratively
export QMLLS_BUILD_DIRS=${pkgs.kdePackages.qtdeclarative}/lib/qt-6/qml/:${quickshell}/lib/qt-6/qml/
export QML_IMPORT_PATH=$PWD/src
'';
}