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