dotfiles/nixos/i3/i3status-rust.nix

18 lines
303 B
Nix
Raw Normal View History

2022-04-02 08:14:30 +01:00
{ config, pkgs, ... }: {
programs.i3status-rust = {
enable = true;
bars = {
top = {
icons = "awesome5";
theme = "solarized-dark";
2022-04-02 11:14:33 +01:00
blocks = [{
block = "time";
format = "%a %d/%m %R";
interval = 59;
}];
2022-04-02 08:14:30 +01:00
};
};
};
}