nixos/home/util/home.nix

34 lines
945 B
Nix
Raw Normal View History

{ pkgs
, lib
, config
2024-01-17 19:31:56 +08:00
, ... }: with lib; let
cfg = config.passthrough.util;
in {
home.packages = with pkgs; [
2024-01-17 19:31:56 +08:00
pv file wget e2fsprogs
] ++ optionals (!cfg.minimal) [
2024-03-25 09:36:56 +08:00
tio mbuffer sedutil
2024-01-17 19:31:56 +08:00
lsscsi zip unzip
2024-01-19 10:54:55 +08:00
nix-index dnsutils whois
2024-01-16 11:59:49 +08:00
pciutils usbutils nvme-cli
] ++ optionals config.passthrough.gui [
2024-01-10 23:37:17 +08:00
gtk-engine-murrine
gnome-themes-extra
2024-01-15 11:19:38 +08:00
mission-planner
inav-configurator
inav-blackbox-tools
(blhelisuite32.override { workdir = "${config.home.homeDirectory}/.blhelisuite32"; })
] ++ optionals (config.passthrough.gui && !config.passthrough.flatpak.enable) [
xfce.thunar gimp
jellyfin-media-player
betaflight-configurator
expresslrs-configurator
];
2024-01-16 14:16:35 +08:00
wayland.windowManager.sway.config.window.commands = mkIf config.passthrough.gui [
{ criteria.class = "BLHeliSuite32xl"; command = "floating enable"; }
{ criteria.app_id = "thunar"; command = "floating enable"; }
];
}