15 lines
476 B
Nix
15 lines
476 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
home.shellAliases = {
|
|
htop = "btm -b";
|
|
ymd = "date +'%Y-%m-%d'";
|
|
cb = "cd $(sed 's|^file://||' /home/till/.config/gtk-3.0/bookmarks | fzf --height 10% --reverse)";
|
|
v = "nvim";
|
|
r = "R --no-save --no-restore";
|
|
R = "R --no-save --no-restore";
|
|
cdg = "cd \$(git rev-parse --show-toplevel)";
|
|
map = "telnet mapscii.me";
|
|
weather = "curl wttr.in/frankfurt";
|
|
};
|
|
}
|