14 lines
173 B
Nix
14 lines
173 B
Nix
{ lib, config, ... }:
|
|
|
|
{
|
|
programs.shed = {
|
|
enable = true;
|
|
|
|
settings = {
|
|
autocd = true;
|
|
autoHistory = true;
|
|
maxHistoryEntries = -1;
|
|
};
|
|
};
|
|
}
|