home(util): add helpful packages and persistence

This commit is contained in:
514fpv 2024-01-04 12:26:34 +08:00
parent 7ff75faabd
commit 37114dd771
Signed by: koishi
SSH key fingerprint: SHA256:VkIdW3jUIiqecV2WNAje2fGU5lEhN0XZ58DN0NS4pv0
2 changed files with 26 additions and 0 deletions

13
home/util/home.nix Normal file
View file

@ -0,0 +1,13 @@
{ pkgs
, lib
, config
, ... }: with lib; {
home.packages = with pkgs; [
pciutils usbutils lsscsi
] ++ optionals config.passthrough.gui [
mission-planner
betaflight-configurator
inav-configurator
inav-blackbox-tools
];
}