Hyprland config change due to 0.48 update

This commit is contained in:
m3tam3re
2025-03-27 09:29:24 +01:00
parent 0e6ea2bacb
commit c32a94b82c
4 changed files with 59 additions and 51 deletions

View File

@ -27,7 +27,6 @@ in {
krita
libation
makemkv
mpv
pamixer
pavucontrol
qpwgraph
@ -41,16 +40,29 @@ in {
unimatrix
];
programs.obs-studio = {
enable = true;
plugins = with pkgs.obs-studio-plugins; [
obs-composite-blur
obs-vaapi
obs-vertical-canvas
obs-vkcapture
obs-webkitgtk
wlrobs
];
programs = {
obs-studio = {
enable = true;
plugins = with pkgs.obs-studio-plugins; [
obs-composite-blur
obs-vaapi
obs-vertical-canvas
obs-vkcapture
obs-webkitgtk
wlrobs
];
};
mpv = {
enable = true;
bindings = {
WHEEL_UP = "seek 10";
WHEEL_DOWN = "seek -10";
};
config = {
profile = "gpu-hq";
ytdl-format = "bestvideo+bestaudio";
};
};
};
};
}