Make hyprpanel configuration more generic, set hardware specific options for nixy.

This commit is contained in:
jay
2025-06-30 19:46:25 -04:00
parent 15dba5dcaf
commit 91b1dda8b2
2 changed files with 15 additions and 3 deletions

View File

@@ -1,9 +1,24 @@
{ config, pkgs, inputs, lib, ... }:
{
programs.hyprpanel = {
settings = {
bar = {
customModules = {
cava = {
framerate = lib.mkForce 165;
};
};
};
};
};
wayland.windowManager.hyprland = {
settings = {
"monitor" = "DP-2, 3440x1440@165, 0x0, 1";
exec-once = [
"mpvpaper -vfp -o 'no-audio no-keepaspect loop vf=lavfi=negate' DP-2 ../../../common/wallpapers/wipeout.mkv"
];
};
};
}