feat: add helpful packages and persistence

This commit is contained in:
514fpv 2024-01-04 12:26:34 +08:00
parent 5a82027157
commit f94101045c
Signed by: koishi
SSH key fingerprint: SHA256:axz0uIzzY+5W19i7QOUuiw5LSqhKfCBKPf3L4xFRxLw
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
];
}

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

@ -0,0 +1,13 @@
{ pkgs
, lib
, config
, ... }: with lib; let
gui = with config.faucet.gui; ( enable && session );
in {
users.home.persist.directories = [ ] ++
optionals gui [
".local/share/Mission Planner"
".config/betaflight-configurator"
".config/inav-configurator"
];
}