More config changes
This commit is contained in:
parent
824394687f
commit
ff80abddd0
@ -13,6 +13,7 @@
|
|||||||
../../modules/home/cli/common
|
../../modules/home/cli/common
|
||||||
../../modules/home/cli/develop.nix
|
../../modules/home/cli/develop.nix
|
||||||
../../modules/home/cli/ssh.nix
|
../../modules/home/cli/ssh.nix
|
||||||
|
../../modules/home/cli/yazi.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
||||||
@ -43,7 +44,6 @@
|
|||||||
unstable.vesktop
|
unstable.vesktop
|
||||||
unstable.blender
|
unstable.blender
|
||||||
loupe
|
loupe
|
||||||
unstable.bottles
|
|
||||||
unstable.surrealist
|
unstable.surrealist
|
||||||
unstable.rnote
|
unstable.rnote
|
||||||
|
|
||||||
@ -69,6 +69,7 @@
|
|||||||
enable = true;
|
enable = true;
|
||||||
defaultApplications = {
|
defaultApplications = {
|
||||||
"application/pdf" = "firefox.desktop";
|
"application/pdf" = "firefox.desktop";
|
||||||
|
"application/rnote" = "rnote.desktop";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
20
modules/home/cli/yazi.nix
Normal file
20
modules/home/cli/yazi.nix
Normal 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"; }
|
||||||
|
];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user