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

View file

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