Files
nix-config/users/jordan/common/optional/graphical/hyprland/waybar.nix
Jordan Holt cc6b63ccc1
All checks were successful
Check flake / build-amd64-linux (push) Successful in 1m22s
waybar: Windows Vista style bar
2025-09-15 19:42:11 +01:00

54 lines
848 B
Nix

{
...
}:
{
programs.waybar = {
enable = true;
settings = [
{
layer = "top";
position = "bottom";
height = 30;
spacing = 10;
modules-left = [
"hyprland/workspaces"
];
modules-center = [
"hyprland/window"
];
modules-right = [
"disk"
"cpu"
"memory"
"privacy"
"clock"
];
clock = {
format = "{:%I:%M %p}";
};
disk = {
format = "{free}";
path = "/";
};
privacy = {
modules = [
{
type = "screenshare";
}
{
type = "audio-in";
}
];
};
}
];
style = ./waybar.css;
systemd.enable = true;
};
}