Link: https://github.com/nix-community/stylix/pull/2041 Link: https://github.com/nix-community/stylix/pull/1976#discussion_r2539186937 Reviewed-by: NAHO <90870942+trueNAHO@users.noreply.github.com>
39 lines
831 B
Nix
39 lines
831 B
Nix
{ lib, ... }:
|
|
{
|
|
stylix.testbed.ui = {
|
|
graphicalEnvironment = "hyprland";
|
|
command.text = "waybar";
|
|
};
|
|
|
|
home-manager.sharedModules = lib.singleton {
|
|
programs.waybar = {
|
|
enable = true;
|
|
settings = lib.singleton {
|
|
modules-left = [
|
|
"hyprland/workspaces"
|
|
"hyprland/submap"
|
|
"custom/media"
|
|
];
|
|
modules-center = [ "hyprland/window" ];
|
|
modules-right = [
|
|
"mpd"
|
|
"idle_inhibitor"
|
|
"pulseaudio"
|
|
"network"
|
|
"power-profiles-daemon"
|
|
"cpu"
|
|
"memory"
|
|
"temperature"
|
|
"backlight"
|
|
"keyboard-state"
|
|
"hyprland/language"
|
|
"battery"
|
|
"battery#bat2"
|
|
"clock"
|
|
"tray"
|
|
"custom/power"
|
|
];
|
|
};
|
|
};
|
|
};
|
|
}
|