Files
garandos/modules/home/noctalia/settings/bar.nix
T
GarandPLG 9e1ba6c858 Disable Noctalia plugins and refactor bar config
Comment out the Noctalia-shell plugins block in host modules, introduce
a "main" section for bar settings, set the bar to disabled by default,
and bump the Noctalia config version to 2.
2026-07-17 17:38:13 +02:00

38 lines
676 B
Nix

_: {
programs.noctalia.settings.bar = {
enabled = false;
order = ["main"];
"main" = {
enabled = true;
background_opacity = 0.0;
widget_spacing = 10;
margin_ends = 0;
scale = 0.95;
font_family = "FiraCode Nerd Font";
start = [
"launcher"
"spacer_2"
"clock"
"spacer_3"
"cpu"
"ram"
"network_rx"
"network_tx"
"sysmon"
];
center = ["workspaces"];
end = [
"tray"
"notifications"
"bluetooth"
"battery"
"recorder"
"volume"
"network"
"control-center"
];
};
};
}