mirror of
https://github.com/tomasriveral/nixos.git
synced 2026-08-12 02:28:37 +02:00
40 lines
1.1 KiB
Nix
40 lines
1.1 KiB
Nix
{
|
|
config,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
programs.zsh = {
|
|
enable = true;
|
|
autosuggestion.enable = true;
|
|
initContent = ''
|
|
# Safe cat that uses colorize plugin ccat
|
|
custom-cat() {
|
|
if [[ -t 1 ]]; then
|
|
ccat "$@"
|
|
else
|
|
command cat "$@"
|
|
fi
|
|
}
|
|
eval "$(direnv hook zsh)"
|
|
fastfetch''\n'';
|
|
shellAliases = {
|
|
".." = "z ..";
|
|
grep = "rg";
|
|
ll = "ls -alF";
|
|
la = "ls -A";
|
|
l = "ls -CF";
|
|
ls = "ls -hA -s --color";
|
|
cat = "custom-cat";
|
|
pomodoro = "custom-tomato";
|
|
librewolf = "kitty --class \"custom-librewolfprofiles\" --name \"Select LibreWolf profile\" --hold custom-librewolfprofiles";
|
|
manix = "custom-manix";
|
|
man = "custom-man";
|
|
mplayer = "mplayer -volume 5";
|
|
snrt = "git add -A && sudo nixos-rebuild test --flake ~/nixos/#laptop";
|
|
snrs = "git add -A && sudo nixos-rebuild switch --flake ~/nixos/#laptop";
|
|
# these are to create the developpement shell
|
|
cenv = "nix-shell -p zsh gcc raylib libx11 libGL";
|
|
};
|
|
};
|
|
}
|