Updated flake;

Removed gale overlay

port 8000 now always open for temporary services.

updated mpv config

Added mount.yazi plugin
This commit is contained in:
Jurn Wubben 2025-05-01 15:05:15 +02:00
parent 1e1736e14b
commit eb6a366283
8 changed files with 188 additions and 445 deletions

View file

@ -14,9 +14,14 @@
pkgs.usbutils
pkgs.pciutils
pkgs.inetutils
pkgs.aria2
pkgs.dua
pkgs.file
]
++ lib.optionals osConfig.niksos.desktop [
inputs.somcli.defaultPackage.${pkgs.system}
pkgs.ffmpeg
pkgs.gurk-rs
]
++ lib.optionals osConfig.niksos.bluetooth [
pkgs.ear2ctl

View file

@ -1,5 +1,26 @@
{
osConfig,
pkgs,
lib,
...
}: let
inherit (lib) mkIf;
udisks2 = osConfig.services.udisks2.enable;
yPlugins = pkgs.yaziPlugins;
in {
programs.yazi = {
enable = true;
plugins = {
full-border = yPlugins.full-border;
mount = mkIf udisks2 yPlugins.mount;
};
keymap.manager.prepend_keymap =
lib.optionals udisks2
[
{
on = "M";
run = "plugin mount";
}
];
};
}