22 lines
240 B
Nix
22 lines
240 B
Nix
{pkgs, ...}:
|
|
|
|
{
|
|
services.polybar = {
|
|
enable = true;
|
|
|
|
package = pkgs.polybar.override {
|
|
i3Support = true;
|
|
mpdSupport = true;
|
|
pulseSupport = true;
|
|
};
|
|
|
|
script = ''
|
|
polybar main & disown
|
|
'';
|
|
|
|
config = ./config;
|
|
|
|
|
|
};
|
|
}
|