nixpkgs/nixos/modules/programs/yazi.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

52 lines
1.3 KiB
Nix
Raw Normal View History

2023-09-03 07:15:23 +00:00
{ config, lib, pkgs, ... }:
let
cfg = config.programs.yazi;
settingsFormat = pkgs.formats.toml { };
names = [ "yazi" "theme" "keymap" ];
in
{
options.programs.yazi = {
enable = lib.mkEnableOption "yazi terminal file manager";
2023-09-03 07:15:23 +00:00
package = lib.mkPackageOption pkgs "yazi" { };
2023-09-03 07:15:23 +00:00
settings = lib.mkOption {
type = with lib.types; submodule {
options = lib.listToAttrs (map
(name: lib.nameValuePair name (lib.mkOption {
inherit (settingsFormat) type;
default = { };
description = ''
2023-09-03 07:15:23 +00:00
Configuration included in `${name}.toml`.
2024-02-18 11:50:39 +00:00
See https://yazi-rs.github.io/docs/configuration/${name}/ for documentation.
2023-09-03 07:15:23 +00:00
'';
}))
names);
};
default = { };
description = ''
2023-09-03 07:15:23 +00:00
Configuration included in `$YAZI_CONFIG_HOME`.
'';
};
};
config = lib.mkIf cfg.enable {
environment = {
systemPackages = [ cfg.package ];
variables.YAZI_CONFIG_HOME = "/etc/yazi/";
etc = lib.attrsets.mergeAttrsList (map
(name: lib.optionalAttrs (cfg.settings.${name} != { }) {
"yazi/${name}.toml".source = settingsFormat.generate "${name}.toml" cfg.settings.${name};
})
names);
};
};
2023-09-13 06:19:04 +00:00
meta = {
maintainers = with lib.maintainers; [ linsui ];
};
2023-09-03 07:15:23 +00:00
}