2023-04-02 23:20:41 +00:00
|
|
|
{
|
|
|
|
config,
|
|
|
|
lib,
|
|
|
|
pkgs,
|
|
|
|
...
|
2024-07-29 02:46:30 +00:00
|
|
|
}: let
|
|
|
|
inherit (lib) mkIf mkEnableOption;
|
2023-04-02 23:20:41 +00:00
|
|
|
cfg = config.aa.suites.development;
|
|
|
|
in {
|
2024-07-29 02:46:30 +00:00
|
|
|
options.aa.suites.development = {
|
2023-04-02 23:20:41 +00:00
|
|
|
enable = mkEnableOption "common configuration";
|
|
|
|
};
|
|
|
|
|
|
|
|
config = mkIf cfg.enable {
|
2023-04-02 23:36:24 +00:00
|
|
|
environment.systemPackages = with pkgs; [
|
2024-03-10 21:28:44 +00:00
|
|
|
awscli2
|
2024-07-29 03:34:53 +00:00
|
|
|
direnv
|
2024-08-22 23:54:29 +00:00
|
|
|
git
|
2024-07-29 03:27:04 +00:00
|
|
|
minio-client
|
|
|
|
pre-commit
|
2024-08-22 23:54:29 +00:00
|
|
|
vim
|
2023-04-02 23:36:24 +00:00
|
|
|
];
|
2023-04-02 23:20:41 +00:00
|
|
|
};
|
|
|
|
}
|