Add fish alias intended for eza

This commit is contained in:
Kiana Sheibani 2024-03-20 01:06:44 -04:00
parent 1b2ed2caa7
commit e5347dffcb
2 changed files with 4 additions and 2 deletions

View file

@ -1,6 +1,7 @@
{ config, pkgs, ... }:
{
environment.systemPackages = with pkgs; [
gcc
ffmpeg
openssl
jaq
@ -19,8 +20,6 @@
graphviz
texlive.combined.scheme-full
(aspellWithDicts (ps: with ps; [ en en-computers en-science ]))
gcc
];
programs.hyprland.enable = true;

View file

@ -6,6 +6,9 @@
];
programs.fish.enable = true;
programs.fish.shellAliases = {
l = "ls -al";
};
programs.eza = {
enable = true;