Separate hyprpanel config from home on lappy to make sure it still works.

This commit is contained in:
jay
2025-07-02 10:43:05 -04:00
parent a6d21574c6
commit 9aa54c49b9
2 changed files with 24 additions and 21 deletions

View File

@@ -1,25 +1,7 @@
{ config, pkgs, inputs, lib, ... }:
{
programs.hyprpanel = {
settings = {
layout = {
"bar.layouts" = {
"0" = {
right = [ "battery" ];
};
};
};
bar = {
customModules = {
cava = {
framerate = lib.mkForce 120;
};
};
};
};
};
imports = [
./programs/hyprpanel.nix
];
wayland.windowManager.hyprland = {
settings = {

View File

@@ -0,0 +1,21 @@
{ pkgs, ... }: {
programs.hyprpanel = {
settings = {
layout = {
"bar.layouts" = {
"0" = {
right = [ "battery" ];
};
};
};
bar = {
customModules = {
cava = {
framerate = lib.mkForce 120;
};
};
};
};
};
}