mirror of
https://github.com/jbowdre/dotfiles.git
synced 2024-11-25 10:32:19 +00:00
add exa
This commit is contained in:
parent
473f39b7ec
commit
668521f9ed
2 changed files with 11 additions and 0 deletions
|
@ -2,6 +2,7 @@
|
|||
# Core CLI apps
|
||||
|
||||
imports = [
|
||||
./exa.nix
|
||||
./git.nix
|
||||
./fish.nix
|
||||
./tmux.nix
|
||||
|
|
10
nix/home/features/cli/exa.nix
Normal file
10
nix/home/features/cli/exa.nix
Normal file
|
@ -0,0 +1,10 @@
|
|||
{ lib, ... }: {
|
||||
programs.exa = {
|
||||
enable = true;
|
||||
enableAliases = true;
|
||||
extraOptions = [
|
||||
"--group-directories-first"
|
||||
];
|
||||
git = true;
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue