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

35 lines
514 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 {
aa = {
tools = {
gpg.enable = true;
};
apps = {
neovim.enable = true;
};
};
environment.systemPackages = with pkgs; [
2024-03-10 21:28:44 +00:00
awscli2
direnv
minio-client
npins
pre-commit
git
];
2023-04-02 23:20:41 +00:00
};
}