dotfiles/user-modules/shell/default.nix

20 lines
246 B
Nix
Raw Normal View History

2024-12-01 23:54:05 +00:00
{
pkgs,
lib,
config,
...
}:
with lib;
{
options.modules.shell = {
aliases = mkOption {
type = types.attrsOf types.str;
default = {
"..." = "cd ../..";
};
description = "Shell aliases";
};
};
}