mirror of
https://github.com/srid/nixos-config.git
synced 2025-12-29 00:44:57 +08:00
14 lines
306 B
Nix
14 lines
306 B
Nix
{ pkgs, ... }:
|
|
{
|
|
shellAliases = {
|
|
e = "nvim";
|
|
g = "${pkgs.git}/bin/git";
|
|
lg = "lazygit";
|
|
ls = "${pkgs.exa}/bin/exa";
|
|
l = "ls";
|
|
ll = "ls -l";
|
|
lt = "ls --tree";
|
|
pux = "sh -c \"tmux -S $(pwd).tmux attach\"";
|
|
pux-iterm = "sh -c \"tmux -S $(pwd).tmux -CC attach\"";
|
|
};
|
|
}
|