1
0
Fork 0
mirror of https://github.com/ryanccn/flake.git synced 2025-12-06 16:10:45 +01:00

feat: manage exa with hm

This commit is contained in:
Ryan Cao 2023-07-24 21:19:38 +08:00
parent acecbf8139
commit d6dc4e7b99
Signed by: ryanccn
SSH key fingerprint: SHA256:NtP/BlVhoQq4xU6BEcZeT8nIPvHntkJ3lIc2yB+F09E
3 changed files with 9 additions and 4 deletions

View file

@ -15,6 +15,7 @@
./programs/bat.nix ./programs/bat.nix
./programs/helix.nix ./programs/helix.nix
./programs/go.nix ./programs/go.nix
./programs/exa.nix
]; ];
programs.home-manager.enable = true; programs.home-manager.enable = true;

View file

@ -1,9 +1,5 @@
{ {
"vim".command = "hx"; "vim".command = "hx";
"ls" = {
command = "exa --all --icons";
fishAlias = true;
};
"dig".command = "doggo"; "dig".command = "doggo";
"glol" = { "glol" = {

8
programs/exa.nix Normal file
View file

@ -0,0 +1,8 @@
{...}: {
programs.exa = {
enable = true;
enableAliases = true;
icons = true;
extraOptions = ["--all"];
};
}