nixos/home/util/home.nix
514fpv 7ec67295f4
fix: overridable per-user BLHeliSuite32 state dir
Separate BLHeliSuite32 state workaround from dist and add per-user state
dir.
2024-01-27 22:47:32 +08:00

31 lines
813 B
Nix

{ pkgs
, lib
, config
, ... }: with lib; let
cfg = config.passthrough.util;
in {
home.packages = with pkgs; [
pv file wget e2fsprogs
] ++ optionals (!cfg.minimal) [
lsscsi zip unzip
nix-index dnsutils whois
pciutils usbutils nvme-cli
] ++ optionals config.passthrough.gui [
gtk-engine-murrine
gnome-themes-extra
xfce.thunar gimp
mission-planner
betaflight-configurator
inav-configurator
inav-blackbox-tools
(blhelisuite32.override { workdir = "${config.home.homeDirectory}/.blhelisuite32"; })
expresslrs-configurator
];
wayland.windowManager.sway.config.window.commands = mkIf config.passthrough.gui [
{ criteria.class = "BLHeliSuite32xl"; command = "floating enable"; }
{ criteria.app_id = "thunar"; command = "floating enable"; }
];
}