13 lines
186 B
Nix
13 lines
186 B
Nix
|
{ config, pkgs, ... }: {
|
||
|
|
||
|
programs.i3status-rust = {
|
||
|
enable = true;
|
||
|
bars = {
|
||
|
top = {
|
||
|
icons = "awesome5";
|
||
|
theme = "solarized-dark";
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|