2025-02-23 14:52:28 +01:00

18 lines
228 B
Nix

{
lib,
...
}:
with lib;
{
options.modules.shell = {
aliases = mkOption {
type = types.attrsOf types.str;
default = {
"..." = "cd ../..";
};
description = "Shell aliases";
};
};
}