mirror of
https://git.gay/xqtc/nixos-config
synced 2024-11-22 22:30:32 +01:00
9 lines
205 B
Nix
9 lines
205 B
Nix
|
{config, lib, pkgs, ...}:
|
||
|
{
|
||
|
programs.yazi = {
|
||
|
enable = true;
|
||
|
enableNushellIntegration = true;
|
||
|
theme = builtins.fromTOML (builtins.readFile ../config-files/yazi-catppuccin-mocha.toml);
|
||
|
};
|
||
|
}
|