2023-09-07 08:55:00 +02:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
{
|
2023-09-08 23:38:28 +02:00
|
|
|
imports = let
|
2024-03-08 20:33:29 +01:00
|
|
|
msg = ''
|
|
|
|
'programs.eza.enableAliases' has been deprecated and replaced with integration
|
|
|
|
options per shell, for example, 'programs.eza.enableBashIntegration'.
|
|
|
|
|
|
|
|
Note, the default for these options is 'true' so if you want to enable the
|
2024-03-14 20:54:58 +01:00
|
|
|
aliases you can simply remove 'programs.eza.enableAliases' from your
|
2024-03-08 20:33:29 +01:00
|
|
|
configuration.'';
|
2023-09-08 23:38:28 +02:00
|
|
|
mkRenamed = opt:
|
|
|
|
mkRenamedOptionModule [ "programs" "exa" opt ] [ "programs" "eza" opt ];
|
2024-03-08 20:33:29 +01:00
|
|
|
in (map mkRenamed [ "enable" "extraOptions" "icons" "git" ])
|
|
|
|
++ [ (mkRemovedOptionModule [ "programs" "eza" "enableAliases" ] msg) ];
|
2023-09-08 23:38:28 +02:00
|
|
|
|
2023-09-07 08:55:00 +02:00
|
|
|
meta.maintainers = [ maintainers.cafkafk ];
|
|
|
|
|
|
|
|
options.programs.eza = {
|
|
|
|
enable = mkEnableOption "eza, a modern replacement for {command}`ls`";
|
|
|
|
|
2024-03-08 20:33:29 +01:00
|
|
|
enableBashIntegration = mkEnableOption "Bash integration" // {
|
|
|
|
default = true;
|
|
|
|
};
|
|
|
|
|
|
|
|
enableZshIntegration = mkEnableOption "Zsh integration" // {
|
|
|
|
default = true;
|
|
|
|
};
|
|
|
|
|
|
|
|
enableFishIntegration = mkEnableOption "Fish integration" // {
|
|
|
|
default = true;
|
|
|
|
};
|
|
|
|
|
|
|
|
enableIonIntegration = mkEnableOption "Ion integration" // {
|
|
|
|
default = true;
|
|
|
|
};
|
|
|
|
|
|
|
|
enableNushellIntegration = mkEnableOption "Nushell integration";
|
2023-09-07 08:55:00 +02:00
|
|
|
|
|
|
|
extraOptions = mkOption {
|
|
|
|
type = types.listOf types.str;
|
|
|
|
default = [ ];
|
|
|
|
example = [ "--group-directories-first" "--header" ];
|
|
|
|
description = ''
|
|
|
|
Extra command line options passed to eza.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
icons = mkOption {
|
2024-10-08 23:34:31 +02:00
|
|
|
type = types.enum [ null true false "auto" "always" "never" ];
|
|
|
|
default = null;
|
2023-09-07 08:55:00 +02:00
|
|
|
description = ''
|
|
|
|
Display icons next to file names ({option}`--icons` argument).
|
2024-10-08 23:34:31 +02:00
|
|
|
|
|
|
|
Note, the support for Boolean values is deprecated.
|
|
|
|
Setting this option to `true` corresponds to `--icons=auto`.
|
2023-09-07 08:55:00 +02:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
git = mkOption {
|
|
|
|
type = types.bool;
|
|
|
|
default = false;
|
|
|
|
description = ''
|
|
|
|
List each file's Git status if tracked or ignored ({option}`--git` argument).
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
package = mkPackageOption pkgs "eza" { };
|
|
|
|
};
|
|
|
|
|
|
|
|
config = let
|
|
|
|
cfg = config.programs.eza;
|
|
|
|
|
2024-10-08 23:34:31 +02:00
|
|
|
iconsOption = let
|
|
|
|
v = if isBool cfg.icons then
|
|
|
|
(if cfg.icons then "auto" else null)
|
|
|
|
else
|
|
|
|
cfg.icons;
|
|
|
|
in optionals (v != null) [ "--icons" v ];
|
|
|
|
|
|
|
|
args = escapeShellArgs
|
|
|
|
(iconsOption ++ optional cfg.git "--git" ++ cfg.extraOptions);
|
2023-09-07 08:55:00 +02:00
|
|
|
|
2024-05-27 23:50:09 +02:00
|
|
|
optionsAlias = optionalAttrs (args != "") { eza = "eza ${args}"; };
|
2024-03-08 20:33:29 +01:00
|
|
|
|
2024-03-13 13:46:29 +01:00
|
|
|
aliases = builtins.mapAttrs (_name: value: lib.mkDefault value) {
|
2023-09-07 08:55:00 +02:00
|
|
|
ls = "eza";
|
|
|
|
ll = "eza -l";
|
|
|
|
la = "eza -a";
|
|
|
|
lt = "eza --tree";
|
|
|
|
lla = "eza -la";
|
|
|
|
};
|
|
|
|
in mkIf cfg.enable {
|
2024-10-08 23:34:31 +02:00
|
|
|
warnings = optional (isBool cfg.icons) ''
|
|
|
|
Setting programs.eza.icons to a Boolean is deprecated.
|
|
|
|
Please update your configuration so that
|
|
|
|
|
|
|
|
programs.eza.icons = ${if cfg.icons then ''"auto"'' else "null"}'';
|
|
|
|
|
2023-09-07 08:55:00 +02:00
|
|
|
home.packages = [ cfg.package ];
|
|
|
|
|
2024-03-08 20:33:29 +01:00
|
|
|
programs.bash.shellAliases = optionsAlias
|
|
|
|
// optionalAttrs cfg.enableBashIntegration aliases;
|
2023-09-07 08:55:00 +02:00
|
|
|
|
2024-03-08 20:33:29 +01:00
|
|
|
programs.zsh.shellAliases = optionsAlias
|
|
|
|
// optionalAttrs cfg.enableZshIntegration aliases;
|
2023-09-07 08:55:00 +02:00
|
|
|
|
2024-09-10 18:57:24 +02:00
|
|
|
programs.fish = mkMerge [
|
|
|
|
(mkIf (!config.programs.fish.preferAbbrs) {
|
|
|
|
shellAliases = optionsAlias
|
|
|
|
// optionalAttrs cfg.enableFishIntegration aliases;
|
|
|
|
})
|
|
|
|
|
|
|
|
(mkIf config.programs.fish.preferAbbrs {
|
|
|
|
shellAliases = optionsAlias;
|
|
|
|
shellAbbrs = optionalAttrs cfg.enableFishIntegration aliases;
|
|
|
|
})
|
|
|
|
];
|
2023-09-07 08:55:00 +02:00
|
|
|
|
2024-03-08 20:33:29 +01:00
|
|
|
programs.ion.shellAliases = optionsAlias
|
|
|
|
// optionalAttrs cfg.enableIonIntegration aliases;
|
2023-10-22 00:38:07 +02:00
|
|
|
|
2024-03-08 20:33:29 +01:00
|
|
|
programs.nushell.shellAliases = optionsAlias
|
|
|
|
// optionalAttrs cfg.enableNushellIntegration aliases;
|
2023-09-07 08:55:00 +02:00
|
|
|
};
|
|
|
|
}
|