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