feat(home): Eza
This commit is contained in:
parent
77458f6c61
commit
ff2df5f592
3 changed files with 34 additions and 18 deletions
|
@ -20,6 +20,7 @@ in
|
|||
cava = enabled;
|
||||
cheat = enabled;
|
||||
curl = enabled;
|
||||
eza = enabled;
|
||||
fish = enabled;
|
||||
journalctl = enabled;
|
||||
neo = enabled;
|
||||
|
|
33
modules/home/programs/eza/default.nix
Normal file
33
modules/home/programs/eza/default.nix
Normal file
|
@ -0,0 +1,33 @@
|
|||
{
|
||||
lib,
|
||||
config,
|
||||
namespace,
|
||||
...
|
||||
}:
|
||||
let
|
||||
inherit (lib) mkIf;
|
||||
inherit (lib.${namespace}) mkEnableModule;
|
||||
|
||||
cfg = config.${namespace}.programs.eza;
|
||||
in
|
||||
{
|
||||
options = mkEnableModule "programs.eza";
|
||||
|
||||
config = mkIf cfg.enable {
|
||||
programs.eza = {
|
||||
enable = true;
|
||||
|
||||
git = true;
|
||||
icons = "always";
|
||||
colors = "always";
|
||||
|
||||
extraOptions = [
|
||||
"--all"
|
||||
"--sort=name"
|
||||
"--group-directories-first"
|
||||
"--header"
|
||||
"--group"
|
||||
];
|
||||
};
|
||||
};
|
||||
}
|
|
@ -1,18 +0,0 @@
|
|||
{ ... }:
|
||||
{
|
||||
programs.eza = {
|
||||
enable = true;
|
||||
|
||||
git = true;
|
||||
icons = "always";
|
||||
colors = "always";
|
||||
|
||||
extraOptions = [
|
||||
"--all"
|
||||
"--sort=name"
|
||||
"--group-directories-first"
|
||||
"--header"
|
||||
"--group"
|
||||
];
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue