flake/home/applications/i3status-rust/default.nix

26 lines
512 B
Nix
Raw Normal View History

2024-01-15 04:18:06 +00:00
{
2024-01-05 10:32:58 +00:00
programs.i3status-rust = {
enable = true;
bars = {
default = {
icons = "material-nf";
blocks = [
### Monitor
{
block = "disk_space";
path = "/nix";
}
{block = "memory";}
{block = "cpu";}
{block = "load";}
### Stuff that I actually need
{block = "sound";}
#{block = "battery";} # i cant get it working
{block = "time";}
];
};
};
};
2023-12-08 15:44:35 +00:00
}