home(gyroflow): add package and module

This commit is contained in:
514fpv 2024-01-10 23:49:00 +08:00
parent be218acda0
commit 42998400b1
Signed by: koishi
SSH key fingerprint: SHA256:2jRvFSzG5UeUlQ3WxZ2sbUOfo5wNKzv1fZsk/FexKjQ
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;
}) ];
}