dotfiles/modules/nixos/suites/development/default.nix

25 lines
386 B
Nix
Raw Normal View History

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