home: add i3status-rust

This commit is contained in:
Guanran Wang 2024-01-05 18:32:58 +08:00
parent 5714fa5d7d
commit 6acc04ff69
Signed by: nyancat
SSH key fingerprint: SHA256:8oWGKciPALWut/6WA27oFKofX+6Wtc0gQnsefXLQx/8

View file

@ -1,3 +1,25 @@
_: { _: {
programs.i3status-rust.enable = true; 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";}
];
};
};
};
} }