2023-04-02 23:17:03 +00:00
|
|
|
{
|
|
|
|
options,
|
|
|
|
config,
|
|
|
|
lib,
|
|
|
|
pkgs,
|
|
|
|
...
|
|
|
|
}:
|
|
|
|
with lib; let
|
|
|
|
cfg = config.aa.suites.utils;
|
|
|
|
in {
|
|
|
|
options.aa.suites.utils = with lib.types; {
|
|
|
|
enable = mkEnableOption "common configuration";
|
|
|
|
};
|
|
|
|
|
|
|
|
config = mkIf cfg.enable {
|
|
|
|
environment.systemPackages = with pkgs; [
|
2023-04-16 17:07:42 +00:00
|
|
|
alejandra
|
2023-04-02 23:17:03 +00:00
|
|
|
bat
|
|
|
|
curl
|
2023-04-16 17:07:42 +00:00
|
|
|
deploy-rs
|
2023-04-02 23:17:03 +00:00
|
|
|
fd
|
|
|
|
file
|
|
|
|
htop
|
|
|
|
jq
|
|
|
|
killall
|
2023-04-16 17:07:42 +00:00
|
|
|
pre-commit
|
2023-04-02 23:17:03 +00:00
|
|
|
ripgrep
|
|
|
|
usbutils
|
|
|
|
wget
|
|
|
|
];
|
|
|
|
};
|
|
|
|
}
|