Added development suite
This commit is contained in:
parent
4e302aef1c
commit
0123fe466f
3 changed files with 32 additions and 8 deletions
|
@ -15,8 +15,9 @@ in {
|
|||
config = mkIf cfg.enable {
|
||||
aa = {
|
||||
suites = {
|
||||
utils.enable = true;
|
||||
desktop.enable = true;
|
||||
development.enable = true;
|
||||
utils.enable = true;
|
||||
};
|
||||
};
|
||||
};
|
||||
|
|
30
modules/suites/development/default.nix
Normal file
30
modules/suites/development/default.nix
Normal file
|
@ -0,0 +1,30 @@
|
|||
{
|
||||
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;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue