This commit is contained in:
Henry Hiles 2023-07-01 20:11:11 -04:00
parent ce81f4fef6
commit b936ad92d3
3 changed files with 14 additions and 2 deletions

View file

@ -33,7 +33,6 @@
free = "free -h";
ping = "prettyping";
shutdown = "shutdown now";
ls = "exa -a --color=always --group-directories-first --icons";
# Git
clone = "gh repo clone";

12
home-manager/exa.nix Normal file
View file

@ -0,0 +1,12 @@
{
programs.exa = {
enable = true;
enableAliases = true;
icons = true;
extraOptions = [
"--all"
"--color=always"
"--group-directories-first"
];
};
}

View file

@ -12,9 +12,10 @@
programs.home-manager.enable = true;
home.stateVersion = "23.11";
}
../home-manager/bat.nix
../home-manager/exa.nix
../home-manager/git.nix
../home-manager/btop.nix
../home-manager/vscode.nix
../home-manager/bat.nix
];
}