Add fish alias intended for eza
This commit is contained in:
parent
1b2ed2caa7
commit
e5347dffcb
|
@ -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;
|
||||||
|
|
|
@ -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;
|
||||||
|
|
Loading…
Reference in a new issue