1
0
Fork 0
mirror of https://git.sr.ht/~roxwize/.dotfiles synced 2025-01-31 07:03:36 +00:00
.dotfiles/nixos/home/yambar.nix

27 lines
703 B
Nix
Raw Normal View History

2024-12-31 07:37:57 +00:00
{ ... }: {
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}";
}
];
};
}
];
};
};
};
}