This commit is contained in:
Miguel Palhas
2025-11-24 13:21:00 +00:00
parent 5098792587
commit 265d97cecc
11 changed files with 88 additions and 33 deletions
+14
View File
@@ -0,0 +1,14 @@
{
lib,
pkgs,
config,
...
}:
{
home.packages = with pkgs; [
yazi
];
xdg.configFile."yazi/yazi.yaml".source = ./yazi.yaml;
}
+9
View File
@@ -0,0 +1,9 @@
[preview]
image_quality = 80
[opener]
pdf = [{ run = 'tdf "$@"', block = true }]
edit = [{ run = '$EDITOR "$@"', block = true }]
[open]
rules = [{ mime = "application/pdf", use = "tdf" }]