configs/workstation/aliases.nix

22 lines
340 B
Nix
Raw Normal View History

2024-07-02 15:02:33 +02:00
{ config, pkgs, ... }:
{
environment.systemPackages = with pkgs; [
tldr
eza
bat
ripgrep
];
environment.shellAliases = {
vi = "nvim";
vim = "nvim";
h = "tldr";
# oxidized
ls = "eza -l";
cat = "bat";
grep = "rg";
top = "btm --color gruvbox";
2024-12-15 14:14:45 +01:00
# Testing run0
#sudo = "run0";
2024-07-02 15:02:33 +02:00
};
}