dotfiles/modules/nixos/suites/development/default.nix
alejandro-angulo 2fc87419ac
Removed npins
I can use flake's inputs features (I just have to mark the stuff I'm
replacing with `flake = false`).
2024-08-01 08:00:59 -07:00

34 lines
502 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 = {
tools = {
gpg.enable = true;
};
apps = {
neovim.enable = true;
};
};
environment.systemPackages = with pkgs; [
awscli2
direnv
minio-client
pre-commit
git
];
};
}