20 lines
199 B
Nix
20 lines
199 B
Nix
{
|
|
lib,
|
|
pkgs,
|
|
config,
|
|
osConfig ? {},
|
|
format ? "unknown",
|
|
namespace,
|
|
...
|
|
}: {
|
|
aa = {
|
|
apps = {
|
|
tmux.enable = true;
|
|
};
|
|
|
|
tools = {
|
|
git.enable = true;
|
|
};
|
|
};
|
|
}
|