20 lines
246 B
Nix
20 lines
246 B
Nix
|
{
|
||
|
pkgs,
|
||
|
lib,
|
||
|
config,
|
||
|
...
|
||
|
}:
|
||
|
|
||
|
with lib;
|
||
|
{
|
||
|
options.modules.shell = {
|
||
|
aliases = mkOption {
|
||
|
type = types.attrsOf types.str;
|
||
|
default = {
|
||
|
"..." = "cd ../..";
|
||
|
};
|
||
|
description = "Shell aliases";
|
||
|
};
|
||
|
};
|
||
|
}
|