30 lines
449 B
Nix
30 lines
449 B
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}: let
|
|
inherit (lib) mkIf mkEnableOption;
|
|
cfg = config.aa.suites.development;
|
|
in {
|
|
options.aa.suites.development = {
|
|
enable = mkEnableOption "common configuration";
|
|
};
|
|
|
|
config = mkIf cfg.enable {
|
|
aa = {
|
|
apps = {
|
|
neovim.enable = true;
|
|
};
|
|
};
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
awscli2
|
|
direnv
|
|
minio-client
|
|
pre-commit
|
|
git
|
|
];
|
|
};
|
|
}
|