mirror of
https://github.com/ryanccn/flake.git
synced 2025-12-06 08:10:43 +01:00
feat: manage exa with hm
This commit is contained in:
parent
acecbf8139
commit
d6dc4e7b99
3 changed files with 9 additions and 4 deletions
1
home.nix
1
home.nix
|
|
@ -15,6 +15,7 @@
|
|||
./programs/bat.nix
|
||||
./programs/helix.nix
|
||||
./programs/go.nix
|
||||
./programs/exa.nix
|
||||
];
|
||||
|
||||
programs.home-manager.enable = true;
|
||||
|
|
|
|||
|
|
@ -1,9 +1,5 @@
|
|||
{
|
||||
"vim".command = "hx";
|
||||
"ls" = {
|
||||
command = "exa --all --icons";
|
||||
fishAlias = true;
|
||||
};
|
||||
"dig".command = "doggo";
|
||||
|
||||
"glol" = {
|
||||
|
|
|
|||
8
programs/exa.nix
Normal file
8
programs/exa.nix
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
{...}: {
|
||||
programs.exa = {
|
||||
enable = true;
|
||||
enableAliases = true;
|
||||
icons = true;
|
||||
extraOptions = ["--all"];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue