dotfiles/modules/suites/utils/default.nix

41 lines
624 B
Nix
Raw Normal View History

{
options,
config,
lib,
pkgs,
2023-07-09 15:24:54 +00:00
inputs,
...
}:
with lib; let
cfg = config.aa.suites.utils;
in {
options.aa.suites.utils = with lib.types; {
enable = mkEnableOption "common configuration";
};
config = mkIf cfg.enable {
aa.apps.bat.enable = true;
environment.systemPackages = with pkgs; [
2023-07-09 15:24:54 +00:00
inputs.agenix.packages.x86_64-linux.default
alejandra
curl
deploy-rs
fd
file
htop
jq
killall
pre-commit
2023-05-21 02:12:45 +00:00
python3
ripgrep
usbutils
wget
2023-07-09 15:24:54 +00:00
lsof
bind # for dig
tcpdump
progress
2023-07-31 00:05:06 +00:00
sqlite
];
};
}