nixos-config/home/modules/yazi.nix
2024-11-08 00:53:37 +01:00

13 lines
216 B
Nix

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