feat(gyroflow): add package and module

This commit is contained in:
514fpv 2024-01-10 23:49:00 +08:00
parent 37275b4422
commit c16835d755
Signed by: koishi
SSH key fingerprint: SHA256:axz0uIzzY+5W19i7QOUuiw5LSqhKfCBKPf3L4xFRxLw
4 changed files with 310 additions and 0 deletions

11
home/gyroflow/home.nix Normal file
View file

@ -0,0 +1,11 @@
{ pkgs
, lib
, config
, ... }: with lib; let
cfg = config.passthrough.gyroflow;
in mkIf cfg.enable {
home.packages = with pkgs; [ (pkgs.callPackage ./package {
inherit (pkgs.qt6) wrapQtAppsHook qmake
qtbase qtsvg qtwayland qtvirtualkeyboard qtdeclarative;
}) ];
}