replace exa with lsd

This commit is contained in:
Adithya 2023-09-09 21:10:52 +05:30
parent d22498396f
commit 0b4b3fbdfd
Signed by: adtya
GPG key ID: 48FC9915FFD326D0
3 changed files with 10 additions and 10 deletions

View file

@ -4,13 +4,13 @@
./bat.nix ./bat.nix
./btop.nix ./btop.nix
./direnv.nix ./direnv.nix
./exa.nix
./git.nix ./git.nix
./files.nix ./files.nix
./firefox.nix ./firefox.nix
./github-cli.nix ./github-cli.nix
./gnupg.nix ./gnupg.nix
./kitty.nix ./kitty.nix
./lsd.nix
./mpv.nix ./mpv.nix
./neovim.nix ./neovim.nix
./starship.nix ./starship.nix

View file

@ -1,9 +0,0 @@
_: {
programs.exa = {
enable = true;
enableAliases = true;
extraOptions = ["--group-directories-first" "--group"];
git = true;
icons = true;
};
}

9
home/programs/lsd.nix Normal file
View file

@ -0,0 +1,9 @@
_: {
programs.lsd = {
enable = true;
enableAliases = true;
settings = {
date = "relative";
};
};
}