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:
parent
7e1df0dd83
commit
8f6905474b
8 changed files with 188 additions and 445 deletions
|
|
@ -8,6 +8,7 @@
|
|||
home.packages = lib.mkIf osConfig.niksos.games [
|
||||
pkgs.dolphin-emu
|
||||
pkgs.suyu
|
||||
pkgs.gale
|
||||
|
||||
# (
|
||||
# pkgs.appimageTools.wrapType1 rec {
|
||||
|
|
|
|||
|
|
@ -10,10 +10,11 @@
|
|||
profile = "gpu-hq";
|
||||
hwdec = "auto-safe";
|
||||
gpu-context = "wayland";
|
||||
ytdl-format = "bestvideo+bestaudio";
|
||||
ytdl-format = "bestvideo[height<=?1440]+bestaudio/best";
|
||||
volume-max = 200;
|
||||
fs = true;
|
||||
save-position-on-quit = true;
|
||||
webui-port = 9090;
|
||||
};
|
||||
|
||||
scripts = with pkgs.mpvScripts; [
|
||||
|
|
@ -22,6 +23,7 @@
|
|||
thumbfast
|
||||
sponsorblock
|
||||
mpv-cheatsheet
|
||||
simple-mpv-webui
|
||||
];
|
||||
};
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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";
|
||||
}
|
||||
];
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue