mirror of
https://github.com/srid/nixos-config.git
synced 2026-01-07 00:17:24 +08:00
13 lines
300 B
Nix
13 lines
300 B
Nix
{ pkgs, ... }:
|
|
{
|
|
shellAliases = {
|
|
e = "nvim";
|
|
g = "${pkgs.git}/bin/git";
|
|
lg = "lazygit";
|
|
l = "${pkgs.exa}/bin/exa";
|
|
ll = "${pkgs.exa}/bin/exa -l";
|
|
ls = "l";
|
|
pux = "sh -c \"tmux -S $(pwd).tmux attach\"";
|
|
pux-iterm = "sh -c \"tmux -S $(pwd).tmux -CC attach\"";
|
|
};
|
|
}
|