Files
nixverse/nodes/hosts/lappy/home/jay/home.nix
2025-07-02 05:11:53 -04:00

31 lines
480 B
Nix

{ config, pkgs, inputs, lib, ... }:
{
programs.hyprpanel = {
settings = {
layout = {
"bar.layouts" = {
"0" = {
right = [ "battery" ];
};
};
};
bar = {
customModules = {
cava = {
framerate = lib.mkForce 120;
};
};
};
};
};
wayland.windowManager.hyprland = {
settings = {
"monitor" = "eDP-1, 2880x1800@120, 0x0, 1";
};
};
}