31 lines
484 B
Nix
31 lines
484 B
Nix
|
{
|
||
|
options,
|
||
|
config,
|
||
|
lib,
|
||
|
pkgs,
|
||
|
...
|
||
|
}:
|
||
|
with lib; let
|
||
|
cfg = config.aa.suites.development;
|
||
|
in {
|
||
|
options.aa.suites.development = with lib.types; {
|
||
|
enable = mkEnableOption "common configuration";
|
||
|
};
|
||
|
|
||
|
config = mkIf cfg.enable {
|
||
|
aa = {
|
||
|
tools = {
|
||
|
git.enable = true;
|
||
|
gpg.enable = true;
|
||
|
zsh.enable = true;
|
||
|
exa.enable = true;
|
||
|
};
|
||
|
|
||
|
apps = {
|
||
|
neovim.enable = true;
|
||
|
tmux.enable = true;
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|