nixos-config/home/modules/yazi.nix

13 lines
216 B
Nix
Raw Normal View History

{
2024-07-01 20:45:31 +02:00
config,
lib,
pkgs,
...
}: {
programs.yazi = {
2024-11-08 00:53:37 +01:00
enable = false;
enableNushellIntegration = true;
theme = builtins.fromTOML (builtins.readFile ../config-files/yazi-catppuccin-mocha.toml);
};
}