1
0
Fork 0
mirror of https://git.sr.ht/~roxwize/.dotfiles synced 2025-03-14 00:13:26 +00:00
.dotfiles/nixos/home/yambar.nix
2024-12-31 02:37:57 -05:00

26 lines
703 B
Nix

{ ... }: {
programs.yambar = {
enable = true;
settings = {
bar = {
location = "top";
height = 26;
background = "00000066";
right = [
{
clock = {
date-format = "%b %d %y";
time-format = "%I:%M %p";
content = [
{
string.text = "{date} {time}";
}
];
};
}
];
};
};
};
}