update lockfile and replace exa with eza

This commit is contained in:
Noah Masur
2023-09-11 23:18:22 -04:00
parent 9826178c0e
commit 0008de7434
2 changed files with 50 additions and 32 deletions

View File

@ -6,7 +6,7 @@
home-manager.users.${config.user} = {
# Packages used in abbreviations and aliases
home.packages = with pkgs; [ curl exa ];
home.packages = with pkgs; [ curl ];
programs.fish = {
enable = true;
@ -15,8 +15,8 @@
# Version of bash which works much better on the terminal
bash = "${pkgs.bashInteractive}/bin/bash";
# Use exa instead of ls for fancier output
ls = "exa --group";
# Use eza (exa) instead of ls for fancier output
ls = "${pkgs.eza}/bin/eza --group";
# Move files to XDG trash on the commandline
trash = lib.mkIf pkgs.stdenv.isLinux "${pkgs.trash-cli}/bin/trash-put";