[shared] Added eza, ls replacement

This commit is contained in:
Martin Berg Alstad 2025-04-19 17:02:30 +02:00
parent 923b0c8980
commit 7e5bc137e5
Signed by: martials
GPG Key ID: 848D71DE0590C199
3 changed files with 14 additions and 0 deletions

View File

@ -11,6 +11,7 @@
inputs.catppuccin.homeModules.catppuccin inputs.catppuccin.homeModules.catppuccin
(lib.custom.relativeToRoot "shared/home-manager/development/git.nix") (lib.custom.relativeToRoot "shared/home-manager/development/git.nix")
(lib.custom.relativeToRoot "shared/home-manager/shell/btop.nix") (lib.custom.relativeToRoot "shared/home-manager/shell/btop.nix")
(lib.custom.relativeToRoot "shared/home-manager/shell/eza.nix")
(lib.custom.relativeToRoot "shared/home-manager/shell/fastfetch.nix") (lib.custom.relativeToRoot "shared/home-manager/shell/fastfetch.nix")
(lib.custom.relativeToRoot "shared/home-manager/shell/fish.nix") (lib.custom.relativeToRoot "shared/home-manager/shell/fish.nix")
(lib.custom.relativeToRoot "shared/home-manager/shell/zoxide.nix") (lib.custom.relativeToRoot "shared/home-manager/shell/zoxide.nix")

View File

@ -2,6 +2,7 @@
imports = [ imports = [
./btop.nix ./btop.nix
./cava ./cava
./eza.nix
./fastfetch.nix ./fastfetch.nix
./fish.nix ./fish.nix
./yazi ./yazi

View File

@ -0,0 +1,12 @@
{
programs = {
eza = {
enable = true;
colors = "always";
enableFishIntegration = true;
git = true;
icons = "always";
};
fish.shellAliases.ls = "eza";
};
}