More config changes

This commit is contained in:
2024-10-11 08:36:31 +02:00
parent 824394687f
commit ff80abddd0
2 changed files with 22 additions and 1 deletions

20
modules/home/cli/yazi.nix Normal file
View File

@@ -0,0 +1,20 @@
{ pkgs, ... }:
{
programs.yazi = {
enable = true;
enableZshIntegration = true;
settings = {
opener = {
open = [
{ run = "xdg-open $@"; desc = "xdg"; orphan = true; }
];
};
open = {
prepend_rules = [
{ name = "*.rnote"; use = "open"; }
];
};
};
};
}