25 lines
636 B
Nix
25 lines
636 B
Nix
{ config, pkgs, inputs, lib, ... }:
|
|
|
|
{
|
|
programs.hyprpanel = {
|
|
settings = {
|
|
layout = {
|
|
"bar.layouts" = {
|
|
"0" = {
|
|
left = [ "dashboard" "separator" "microphone" "volume" "bluetooth" "separator" "network" "separator" "workspaces" "windowtitle" ];
|
|
middle = [ "media" "cava" ];
|
|
right = [ "netstat" "cpu" "cputemp" "ram" "storage" "separator" "systray" "notifications" "battery" "separator" "weather" "clock" ];
|
|
};
|
|
};
|
|
};
|
|
};
|
|
};
|
|
|
|
wayland.windowManager.hyprland = {
|
|
settings = {
|
|
"monitor" = "eDP-1, 2880x1800@120, 0x0, 1";
|
|
};
|
|
};
|
|
}
|
|
|