feat(home): Eza
This commit is contained in:
parent
768f4ff30d
commit
774e2cf818
3 changed files with 34 additions and 18 deletions
|
@ -20,6 +20,7 @@ in
|
||||||
cava = enabled;
|
cava = enabled;
|
||||||
cheat = enabled;
|
cheat = enabled;
|
||||||
curl = enabled;
|
curl = enabled;
|
||||||
|
eza = enabled;
|
||||||
fish = enabled;
|
fish = enabled;
|
||||||
journalctl = enabled;
|
journalctl = enabled;
|
||||||
neo = 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