18 lines
214 B
Nix
18 lines
214 B
Nix
{ ... }:
|
|
{
|
|
aa = {
|
|
installDefaults = false;
|
|
|
|
tools = {
|
|
eza.enable = true;
|
|
zsh.enable = true;
|
|
};
|
|
};
|
|
|
|
nix.gc = {
|
|
automatic = true;
|
|
options = "-d";
|
|
frequency = "03:15";
|
|
};
|
|
}
|