refactor: move packages to dedicated directory

This commit is contained in:
514fpv 2024-01-15 22:22:30 +08:00
parent 62ce64e1b7
commit df6a1c10a3
Signed by: koishi
SSH key fingerprint: SHA256:axz0uIzzY+5W19i7QOUuiw5LSqhKfCBKPf3L4xFRxLw
10 changed files with 21 additions and 6 deletions

View file

@ -4,8 +4,5 @@
, ... }: 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;
}) ];
home.packages = with pkgs; [ gyroflow ];
}

View file

@ -15,7 +15,7 @@
betaflight-configurator
inav-configurator
inav-blackbox-tools
(pkgs.callPackage ./package/blheli32.nix { })
(pkgs.callPackage ./package/expresslrs.nix { })
blhelisuite32
expresslrs-configurator
];
}

13
package/default.nix Normal file
View file

@ -0,0 +1,13 @@
{ lib, ... }: {
nixpkgs.overlays = [ (final: prev:
builtins.listToAttrs (map (pkg: {
name = pkg;
value = let
argsPath = ./${pkg}/args.nix;
in final.callPackage ./${pkg}
(if (builtins.pathExists argsPath) then
(import argsPath final)
else { });
}) (builtins.attrNames (builtins.readDir ./.)))
) ];
}

View file

@ -0,0 +1,4 @@
pkgs: {
inherit (pkgs.qt6) wrapQtAppsHook qmake
qtbase qtsvg qtwayland qtvirtualkeyboard qtdeclarative;
}

View file

@ -7,6 +7,7 @@
../global
../home/profile.nix
../home/user.nix
../package
./constant.nix
./channel.nix
impermanence.nixosModules.impermanence