home/noctalia bar things

This commit is contained in:
tulg 2025-10-24 18:09:31 +03:00
parent 0df33dc8e7
commit 4a7335198a

View file

@ -1,10 +1,12 @@
{ pkgs, inputs, ... }:
{ {
pkgs,
inputs,
...
}: {
imports = [ imports = [
#inputs.noctalia.homeModules.default #inputs.noctalia.homeModules.default
]; ];
programs.noctalia-shell = { programs.noctalia-shell = {
enable = true; enable = true;
settings = { settings = {
@ -16,29 +18,30 @@
showCapsule = false; showCapsule = false;
widgets = { widgets = {
left = [ left = [
{ id = "Workspace"; } {id = "Workspace";}
{ id = "ActiveWindow"; } {id = "ActiveWindow";}
]; ];
center = [ center = [
{ hideUnoccupied = false; id = "Workspace"; labelMode = "none"; }
]; ];
right = [ right = [
{ id = "Tray"; } {id = "Tray";}
{ alwaysShowPercentage = false; id = "Battery"; warningThreshold = 30; } {
alwaysShowPercentage = false;
id = "Battery";
warningThreshold = 30;
}
{ {
formatHorizontal = "HH:mm"; formatHorizontal = "HH:mm";
formatVertical = "HH mm"; formatVertical = "HH mm";
id = "Clock"; id = "Clock";
useMonospacedFont = true; useMonospacedFont = true;
usePrimaryColor = true; usePrimaryColor = true;
} }
{ id = "SidePanelToggle"; useDistroLogo = true; } {
id = "SidePanelToggle";
useDistroLogo = true;
}
]; ];
}; };
}; };