nixos-config/home/modules/yazi.nix

9 lines
205 B
Nix
Raw Normal View History

{config, lib, pkgs, ...}:
{
programs.yazi = {
enable = true;
enableNushellIntegration = true;
theme = builtins.fromTOML (builtins.readFile ../config-files/yazi-catppuccin-mocha.toml);
};
}