home

My NixOS systems configurations.
Log | Files | Refs | LICENSE

commit e80e44f66265f6948e2bc5b0eb343054049acd89
parent a802a5d3c33f10991ca6bc36dc1a78566bb10662
Author: Vincent Demeester <vincent@sbr.pm>
Date:   Thu, 19 Oct 2023 19:22:17 +0200

Remove usage of exa…

It is unmaintained and I should probably rely on good old ls.

Signed-off-by: Vincent Demeester <vincent@sbr.pm>

Diffstat:
Mnix/packages/fhs/std.nix | 2+-
Msystems/modules/profiles/base.nix | 2+-
Musers/vincent/core/default.nix | 2+-
Musers/vincent/core/shell.nix | 10+++++-----
4 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/nix/packages/fhs/std.nix b/nix/packages/fhs/std.nix @@ -4,7 +4,7 @@ buildFHSUserEnv { name = "fhs-std"; targetPkgs = pkgs: with pkgs; [ envsubst - exa # TODO: switch to eza in 2024 + # exa # TODO: switch to eza in 2024 git gnumake coreutils diff --git a/systems/modules/profiles/base.nix b/systems/modules/profiles/base.nix @@ -32,7 +32,7 @@ in systemPackages = with pkgs; [ cachix direnv - exa # TODO: switch to eza in 2024 + # exa # TODO: switch to eza in 2024 file htop iotop diff --git a/users/vincent/core/default.nix b/users/vincent/core/default.nix @@ -22,7 +22,7 @@ in packages = with pkgs; [ enchive entr - exa # TODO: switch to eza in 2024 + # exa # TODO: switch to eza in 2024 fd htop mosh diff --git a/users/vincent/core/shell.nix b/users/vincent/core/shell.nix @@ -5,11 +5,11 @@ cp = ''cp --interactive''; mv = ''mv --interactive''; gcd = ''cd (git root)''; - ls = ''exa''; - ll = ''exa --long''; - la = ''exa --all''; - l = ''exa --long --all --header''; - t = ''exa --tree --level=2''; + # ls = ''exa''; + ll = ''ls --long''; + la = ''ls --all''; + l = ''ls --long --all --header''; + # t = ''exa --tree --level=2''; wget = ''wget -c''; map = ''xargs -n1''; k = ''kubectl'';