refactor: extract shell aliases

This commit is contained in:
Michael Mandl 2024-07-10 12:42:59 +02:00
parent a97d3266e1
commit a211568b7d
Signed by: mandlm
GPG key ID: 088ED38F036C7AF2
3 changed files with 2 additions and 1 deletions

View file

@ -32,7 +32,7 @@
./picocom.nix
./podman.nix
../rsync.nix
./shell_aliases.nix
../shell_aliases.nix
./ssh.nix
../tree.nix
./zsh.nix

View file

@ -1,11 +0,0 @@
{ ... }:
{
home.shellAliases = {
g = "git";
gg = "git graph";
gs = "git status";
gd = "git diff";
k = "kubectl";
};
}