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, ... }: { config, pkgs, inputs, lib, ... }:
imports = [
{ ./programs/hyprpanel.nix
programs.hyprpanel = { ];
settings = {
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, ... }: {
programs.hyprpanel = {
settings = {
layout = {
"bar.layouts" = {
"0" = {
right = [ "battery" ];
};
};
};
bar = {
customModules = {
cava = {
framerate = lib.mkForce 120;
};
};
};
};
};
}