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

Compilation fix.

Another compliation fix.
This commit is contained in:
jay
2025-07-02 10:43:05 -04:00
parent a6d21574c6
commit f786b4020a
2 changed files with 24 additions and 20 deletions

View File

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

View File

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